2
0
mirror of https://github.com/boostorg/context.git synced 2026-01-19 04:02:17 +00:00
Files
context/test/is_libstdcxx.cpp
2022-09-19 05:00:41 +03:00

13 lines
319 B
C++

// Copyright Nikita Kniazev 2022.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/config.hpp>
#ifndef BOOST_LIBSTDCXX_VERSION
# error "Not libstdc++"
#endif
int main() {}