(fix) cplusplus constant type (#525)

Adjust the ETL variable type to match C++'s.
This commit is contained in:
Eduardo Elael 2022-04-05 11:42:09 +02:00 committed by GitHub
parent 1b5da4a4b2
commit f9b9865956
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -377,7 +377,7 @@ namespace etl
static ETL_CONSTANT bool has_mutable_array_view = (ETL_HAS_MUTABLE_ARRAY_VIEW == 1);
static ETL_CONSTANT bool has_ideque_repair = (ETL_HAS_IDEQUE_REPAIR == 1);
static ETL_CONSTANT bool is_debug_build = (ETL_IS_DEBUG_BUILD == 1);
static ETL_CONSTANT int cplusplus = __cplusplus;
static ETL_CONSTANT long cplusplus = __cplusplus;
}
}