mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
0388d79770
* Make custom types easier with some predefined cases + docs * missing include * adding Ubuntu 24 CXX 20 * using concepts all the way * minor tweak * tiny tweak * tweaks * more tweaking * saving --------- Co-authored-by: Daniel Lemire <dlemire@lemire.me>
18 lines
368 B
C++
18 lines
368 B
C++
#ifndef SIMDJSON_CONCEPTS_H
|
|
#define SIMDJSON_CONCEPTS_H
|
|
#ifdef __has_include
|
|
#if __has_include(<version>)
|
|
#include <version>
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __cpp_concepts
|
|
// Deliberately empy. In the future, if the library needs to define concepts, it
|
|
// can be done here.
|
|
namespace simdjson {
|
|
namespace concepts {
|
|
} // namespace concepts
|
|
} // namespace simdjson
|
|
#endif
|
|
|
|
#endif |