Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stefan Strogin
flac
Commits
b7eeec1e
Commit
b7eeec1e
authored
Dec 18, 2003
by
Josh Coalson
Browse files
#pragma to turn off useless MSVC warning C4800
parent
93c66d76
Changes
12
Hide whitespace changes
Inline
Side-by-side
src/libFLAC++/file_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Decoder
{
...
...
src/libFLAC++/file_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Encoder
{
...
...
src/libFLAC++/seekable_stream_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Decoder
{
...
...
src/libFLAC++/seekable_stream_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Encoder
{
...
...
src/libFLAC++/stream_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Decoder
{
...
...
src/libFLAC++/stream_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"FLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
FLAC
{
namespace
Encoder
{
...
...
src/libOggFLAC++/file_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Decoder
{
...
...
src/libOggFLAC++/file_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Encoder
{
...
...
src/libOggFLAC++/seekable_stream_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Decoder
{
...
...
src/libOggFLAC++/seekable_stream_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Encoder
{
...
...
src/libOggFLAC++/stream_decoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/decoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Decoder
{
...
...
src/libOggFLAC++/stream_encoder.cpp
View file @
b7eeec1e
...
...
@@ -32,6 +32,11 @@
#include
"OggFLAC++/encoder.h"
#include
"FLAC/assert.h"
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )
#endif
namespace
OggFLAC
{
namespace
Encoder
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment