Files
simdjson-simdjson/include/simdjson/concepts.h
T
Daniel Lemire 0388d79770 Extending the deserialization code with more defaults + docs (#2233)
* 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>
2024-08-11 14:14:35 -04:00

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