Browse Source

libobs: Remove OBS_UNUSED

tytan652 3 years ago
parent
commit
447f2869ab
1 changed files with 0 additions and 2 deletions
  1. 0 2
      libobs/util/c99defs.h

+ 0 - 2
libobs/util/c99defs.h

@@ -24,12 +24,10 @@
 #define UNUSED_PARAMETER(param) (void)param
 
 #ifdef _MSC_VER
-#define OBS_UNUSED
 #define _OBS_DEPRECATED __declspec(deprecated)
 #define OBS_NORETURN __declspec(noreturn)
 #define FORCE_INLINE __forceinline
 #else
-#define OBS_UNUSED __attribute__((unused))
 #define _OBS_DEPRECATED __attribute__((deprecated))
 #define OBS_NORETURN __attribute__((noreturn))
 #define FORCE_INLINE inline __attribute__((always_inline))