2021-04-18 12:04:46 +00:00
|
|
|
#define TOML_API
|
|
|
|
#define TOML_ATTR(...)
|
2021-10-24 22:04:23 +00:00
|
|
|
#define TOML_ALWAYS_INLINE inline
|
2021-04-18 12:04:46 +00:00
|
|
|
#define TOML_NEVER_INLINE
|
|
|
|
#define TOML_TRIVIAL_ABI
|
|
|
|
#define TOML_ABSTRACT_BASE
|
|
|
|
#define TOML_EMPTY_BASES
|
2021-10-24 22:04:23 +00:00
|
|
|
#define TOML_CONSTRAINED_TEMPLATE(cond, ...) template <__VA_ARGS__>
|
|
|
|
#define TOML_LIKELY(...) (__VA_ARGS__)
|
|
|
|
#define TOML_UNLIKELY(...) (__VA_ARGS__)
|
2021-10-23 09:22:41 +00:00
|
|
|
#define TOML_NODISCARD
|
2021-04-18 12:04:46 +00:00
|
|
|
#define TOML_NODISCARD_CTOR
|
2021-10-24 22:04:23 +00:00
|
|
|
#define TOML_RETURNS_BY_THROWING
|
2021-10-26 18:03:56 +00:00
|
|
|
#define TOML_EXTERN_NOEXCEPT(...)
|
2021-04-18 12:04:46 +00:00
|
|
|
#define TOML_EXTERNAL_LINKAGE
|
2021-10-24 22:04:23 +00:00
|
|
|
#define TOML_INTERNAL_LINKAGE static
|
|
|
|
#define TOML_ANON_NAMESPACE_START namespace
|
|
|
|
#define TOML_ANON_NAMESPACE_END static_assert(true)
|
|
|
|
#define TOML_ABI_NAMESPACE_BOOL(...) static_assert(true)
|
|
|
|
#define TOML_ABI_NAMESPACE_END static_assert(true)
|
|
|
|
#define TOML_NAMESPACE_START namespace toml
|
|
|
|
#define TOML_NAMESPACE_END static_assert(true)
|
|
|
|
#define TOML_IMPL_NAMESPACE_START namespace toml::impl
|
|
|
|
#define TOML_IMPL_NAMESPACE_END static_assert(true)
|