// file : odb/details/c-string.hxx // copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC // license : GNU GPL v2; see accompanying LICENSE file #ifndef ODB_DETAILS_C_STRING_HXX #define ODB_DETAILS_C_STRING_HXX #include #include namespace odb { namespace details { struct c_string_comparator { bool operator() (const char* x, const char* y) const { return std::strcmp (x, y) < 0; } }; } } #include #endif // ODB_DETAILS_C_STRING_HXX