Browse Source

Fix override check/define

tags/1.9.4
falkTX 11 years ago
parent
commit
e9db43a311
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      source/includes/CarlaDefines.h

+ 1
- 1
source/includes/CarlaDefines.h View File

@@ -62,7 +62,7 @@
#elif defined(__cplusplus)
# if __cplusplus >= 201103L || (defined(__GNUC__) && defined(__GXX_EXPERIMENTAL_CXX0X__) && (__GNUC__ * 100 + __GNUC_MINOR__) >= 405) || __has_extension(cxx_noexcept)
# define CARLA_PROPER_CPP11_SUPPORT
# if (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) < 407) || ! __has_extension(cxx_override_control)
# if (defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__) < 407) && ! __has_extension(cxx_override_control)
# define override // gcc4.7+ only
# define final // gcc4.7+ only
# endif


Loading…
Cancel
Save