jsoncpp: fix missing template deletion support on LCC < 1.23

This commit is contained in:
makise-homura
2024-01-15 03:18:20 +03:00
parent 67de0c197b
commit 77e046b47c

View File

@@ -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