ce icon indicating copy to clipboard operation
ce copied to clipboard

Common Environment for c++

Results 1 ce issues
Sort by recently updated
recently updated
newest added

example ``` #define CE_VERSION(MAJOR, MINOR, PATCH) (((((MAJOR) * 100000) + (MINOR)) * 100000) + (PATCH)) #if !defined(CE_ON_CLANG) && defined(__clang__) #define CE_ON_CLANG CE_VERSION(__clang_major__, __clang_minor__, __clang_patchlevel__) #else #define CE_ON_CLANG 0 #endif #if...