Path: blob/main/contrib/llvm-project/libcxx/include/__cxx03/__configuration/language.h
213799 views
// -*- C++ -*-1//===----------------------------------------------------------------------===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//89#ifndef _LIBCPP___CXX03___CONFIGURATION_LANGUAGE_H10#define _LIBCPP___CXX03___CONFIGURATION_LANGUAGE_H1112#include <__cxx03/__configuration/config_site_shim.h>1314#ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER15# pragma GCC system_header16#endif1718#if !defined(__cpp_rtti) || __cpp_rtti < 199711L19# define _LIBCPP_HAS_NO_RTTI20#endif2122#if !defined(__cpp_exceptions) || __cpp_exceptions < 199711L23# define _LIBCPP_HAS_NO_EXCEPTIONS24#endif2526#endif // _LIBCPP___CXX03___CONFIGURATION_LANGUAGE_H272829