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// SPDX-FileCopyrightText: Copyright (C) 2019 Tobias Hienzsch
3
4#ifndef TETL_CONFIG_COMPILER_HPP
5#define TETL_CONFIG_COMPILER_HPP
6
7#if defined(__clang__)
8 #define TETL_COMPILER_CLANG
9#elif defined(__GNUC__)
10 #define TETL_COMPILER_GCC
11#elif defined(_MSC_VER)
12 #define TETL_COMPILER_MSVC
13#else
14 #define TETL_COMPILER_UNKOWN
15#endif
16
17#endif // TETL_CONFIG_COMPILER_HPP