mirror of
https://github.com/marzer/tomlplusplus.git
synced 2024-11-02 02:26:28 +00:00
18dfcf2314
also: - minor refactoring (esp. GNU attributes) - added documentation about formatters being free to ignore flags where necessary
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
#define TOML_ABI_NAMESPACE_BOOL(...) static_assert(true)
|
|
#define TOML_ABI_NAMESPACE_END static_assert(true)
|
|
#define TOML_ABSTRACT_BASE
|
|
#define TOML_ALWAYS_INLINE inline
|
|
#define TOML_ANON_NAMESPACE_END static_assert(true)
|
|
#define TOML_ANON_NAMESPACE_START namespace
|
|
#define TOML_API
|
|
#define TOML_ATTR(...)
|
|
#define TOML_CONST_GETTER
|
|
#define TOML_CONST_INLINE_GETTER inline
|
|
#define TOML_CONSTRAINED_TEMPLATE(cond, ...) template <__VA_ARGS__>
|
|
#define TOML_EMPTY_BASES
|
|
#define TOML_EXTERN_NOEXCEPT(...)
|
|
#define TOML_EXTERNAL_LINKAGE
|
|
#define TOML_IMPL_NAMESPACE_END static_assert(true)
|
|
#define TOML_IMPL_NAMESPACE_START namespace toml::impl
|
|
#define TOML_INTERNAL_LINKAGE static
|
|
#define TOML_LIKELY(...) (__VA_ARGS__)
|
|
#define TOML_NAMESPACE_END static_assert(true)
|
|
#define TOML_NAMESPACE_START namespace toml
|
|
#define TOML_NEVER_INLINE
|
|
#define TOML_NODISCARD
|
|
#define TOML_NODISCARD_CTOR
|
|
#define TOML_PURE_GETTER
|
|
#define TOML_PURE_INLINE_GETTER inline
|
|
#define TOML_RETURNS_BY_THROWING
|
|
#define TOML_TRIVIAL_ABI
|
|
#define TOML_UNLIKELY(...) (__VA_ARGS__)
|