Skip to content

Commit 1d14be1

Browse files
committed
Disable "function call missing argument list" warning on MSVC
1 parent afd7a25 commit 1d14be1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

video_stream_mpg.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
#define PLM_REALLOC(p, sz) memrealloc(p, sz)
55
#define PLM_FREE(p) memfree(p)
66

7+
#ifdef _MSC_VER
8+
#pragma warning(disable : 4551)
9+
#endif
10+
711
#include "video_stream_mpg.h"
812

913
#include "core/config/project_settings.h"

0 commit comments

Comments
 (0)