From 0b830069b24a32a1300f2f5ee780e92f90ad950a Mon Sep 17 00:00:00 2001 From: Arin Alex Date: Tue, 7 Feb 2023 18:44:00 +0300 Subject: [PATCH] fix build for c++ < 17 --- limereport/lrcollection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/limereport/lrcollection.h b/limereport/lrcollection.h index 145443a..db9285e 100644 --- a/limereport/lrcollection.h +++ b/limereport/lrcollection.h @@ -47,7 +47,7 @@ namespace LimeReport{ #if __cplusplus >= 201703L const int inline COLLECTION_TYPE_ID = qMetaTypeId(); #else -const int inline COLLECTION_TYPE_ID = qMetaTypeId(); +const int COLLECTION_TYPE_ID = qMetaTypeId(); #endif class LIMEREPORT_EXPORT ICollectionContainer{ public: