xtd 0.2.0
Loading...
Searching...
No Matches
check_cpp_exceptions.hpp
Go to the documentation of this file.
1
3#pragma once
4
6#if !defined(__cpp_exceptions)
7# if defined(_MSC_VER)
8# error "xtd requires C++ exceptions support. Please enable exceptions in your compiler (do not use /EHs-c-)."
9# else
10# error "xtd requires C++ exceptions support. Please enable exceptions in your compiler (do not use -fno-exceptions)."
11# endif
12#endif