Warning, file /include/catch2/internal/catch_preprocessor_internal_stringify.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef CATCH_PREPROCESSOR_INTERNAL_STRINGIFY_HPP_INCLUDED
0009 #define CATCH_PREPROCESSOR_INTERNAL_STRINGIFY_HPP_INCLUDED
0010
0011 #include <catch2/catch_user_config.hpp>
0012
0013 #if !defined(CATCH_CONFIG_DISABLE_STRINGIFICATION)
0014 #define CATCH_INTERNAL_STRINGIFY(...) #__VA_ARGS__##_catch_sr
0015 #else
0016 #define CATCH_INTERNAL_STRINGIFY(...) "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"_catch_sr
0017 #endif
0018
0019 #endif