tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
compiler.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: BSL-1.0
2
3#ifndef TETL_CONFIG_COMPILER_HPP
4#define TETL_CONFIG_COMPILER_HPP
5
6#if defined(__clang__)
7 #define TETL_COMPILER_CLANG
8#elif defined(__GNUC__)
9 #define TETL_COMPILER_GCC
10#elif defined(_MSC_VER)
11 #define TETL_COMPILER_MSVC
12#else
13 #define TETL_COMPILER_UNKOWN
14#endif
15
16#endif // TETL_CONFIG_COMPILER_HPP