diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2024-01-15 00:18:20 (GMT) |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2024-01-16 19:11:09 (GMT) |
commit | 77e046b47c8d17ec44fea8a01bd8dab39c898c6a (patch) | |
tree | 9cdc35c5ab1915a4c81b5c832775a907d3fa59b1 /Utilities | |
parent | 67de0c197b6a1c1cba36a473fe4c62ea64fc6bae (diff) | |
download | CMake-77e046b47c8d17ec44fea8a01bd8dab39c898c6a.zip CMake-77e046b47c8d17ec44fea8a01bd8dab39c898c6a.tar.gz CMake-77e046b47c8d17ec44fea8a01bd8dab39c898c6a.tar.bz2 |
jsoncpp: fix missing template deletion support on LCC < 1.23
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmjsoncpp/include/json/value.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Utilities/cmjsoncpp/include/json/value.h b/Utilities/cmjsoncpp/include/json/value.h index f6ac9e3..421fef8 100644 --- a/Utilities/cmjsoncpp/include/json/value.h +++ b/Utilities/cmjsoncpp/include/json/value.h @@ -33,6 +33,10 @@ #if __clang_major__ == 3 && __clang_minor__ <= 8 #define JSONCPP_TEMPLATE_DELETE #endif +#elif defined(__EDG__) && defined(__LCC__) +#if __LCC__ < 123 +#define JSONCPP_TEMPLATE_DELETE +#endif #endif #if !defined(JSONCPP_TEMPLATE_DELETE) #define JSONCPP_TEMPLATE_DELETE = delete |