1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#pragma once


#include <string><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.
#include "adaptor/string.hpp"


#if __GNUG__ >= 13
#   define UNI_CONSTEXPR_STD_STRING constexpr std::string
#   define UNI_CONSTEXPR_STRING constexpr uni::string
#else
#   define UNI_CONSTEXPR_STD_STRING const std::string
#   define UNI_CONSTEXPR_STRING const uni::string
#endif