Skip to content

Commit

Permalink
Merge pull request #180 from syby119/master
Browse files Browse the repository at this point in the history
Fix MSVC Warning C4834
  • Loading branch information
SpartanJ authored Jul 30, 2024
2 parents 0c70ed2 + bb0d66b commit 1e981c9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/efsw/Debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,10 @@ void efPRINTC( unsigned int cond, const char* format, ... );
#define efDEBUGC( cond, format, args... ) \
{}
#else
#define efDEBUG
#define efDEBUGC
#define efDEBUG( ... ) \
{}
#define efDEBUGC( ... ) \
{}
#endif

#endif
Expand Down

0 comments on commit 1e981c9

Please sign in to comment.