We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e076794 commit f81b690Copy full SHA for f81b690
src/api/Compressor.hpp
@@ -33,7 +33,12 @@ limitations under the License.
33
#include <stdio.h>
34
35
#ifdef __cplusplus
36
- #define KANZI_NOEXCEPT noexcept
+ #if __cplusplus >= 201103L
37
+ // C++ 11 or higher
38
+ #define KANZI_NOEXCEPT noexcept
39
+ #else
40
+ #define KANZI_NOEXCEPT
41
+ #endif
42
#else
43
#define KANZI_NOEXCEPT
44
#endif
src/api/Decompressor.hpp
0 commit comments