/* 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_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_SYSLOG_H 0 /* Compiler supports __attribute__((warn_unused)). */ #define HAVE_GCC_ATTRIBUTE_WARN_UNUSED 0 /* Guaranteed copy elision (C++17), __cpp_guaranteed_copy_elision (C++2a): */ #define HAVE_CPP_GUARANTEED_COPY_ELISION 0 // Compiler supports all of C++2a "Add Constexpr Modifiers to Functions // in and Headers", "Making std::vector // constexpr", and "Adding the constinit keyword": #define HAVE_CPP_CONSTINIT_SORTED_VECTOR 0 // Useable C++2a : #define HAVE_CPP_SPAN 0 /* GCC bug "move ctor wrongly chosen in return stmt (derived vs. base)": */ #define HAVE_GCC_BUG_87150 0 #endif