/* Global configuration file. Only for settings that apply to every source file and are unlikely to change often, such as whether a certain C++11 feature is available. Do NOT use for settings local to some code or for settings that can change often. Any change in this header will cause a rebuild of almost everything. */ #ifndef CONFIG_GLOBAL_H #define CONFIG_GLOBAL_H #define HAVE_CXX14_CONSTEXPR 0 #define HAVE_GCC_BUILTIN_ATOMIC 0 #define HAVE_GCC_BUILTIN_FFS 0 /* _Pragma */ #define HAVE_GCC_PRAGMA_OPERATOR 0 #define HAVE_GCC_DEPRECATED_MESSAGE 0 #define HAVE_BROKEN_CONST_ITERATORS 0 #define HAVE_SYSLOG_H 0 /* Compiler supports __attribute__((warn_unused)). */ #define HAVE_GCC_ATTRIBUTE_WARN_UNUSED 0 /* [[fallthrough]] (C++17), __has_cpp_attribute(fallthrough) (C++2a): */ #define HAVE_CPP_ATTRIBUTE_FALLTHROUGH 0 /* [[nodiscard]] (C++17), __has_cpp_attribute(nodiscard) (C++2a): */ #define HAVE_CPP_ATTRIBUTE_NODISCARD 0 /* Guaranteed copy elision (C++17), __cpp_guaranteed_copy_elision (C++2a): */ #define HAVE_CPP_GUARANTEED_COPY_ELISION 0 /* Inline variables (C++17), __cpp_inline_variables (C++2a): */ #define HAVE_CPP_INLINE_VARIABLES 0 /* Fix for "Return by converting move constructor": */ #define HAVE_CXX_CWG1579_FIX 0 /* GCC bug "move ctor wrongly chosen in return stmt (derived vs. base)": */ #define HAVE_GCC_BUG_87150 0 #endif