From 77e046b47c8d17ec44fea8a01bd8dab39c898c6a Mon Sep 17 00:00:00 2001 From: makise-homura Date: Mon, 15 Jan 2024 03:18:20 +0300 Subject: jsoncpp: fix missing template deletion support on LCC < 1.23 --- Utilities/cmjsoncpp/include/json/value.h | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v0.12