26 lines · c
1//===----- yvals_core.h - Internal MSVC STL core header -------------------===//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//===----------------------------------------------------------------------===//8 9// Only include this if we are aiming for MSVC compatibility.10#ifndef _MSC_VER11#include_next <yvals_core.h>12#else13 14#ifndef __clang_yvals_core_h15#define __clang_yvals_core_h16 17#include_next <yvals_core.h>18 19#ifdef _STL_INTRIN_HEADER20#undef _STL_INTRIN_HEADER21#define _STL_INTRIN_HEADER <intrin0.h>22#endif23 24#endif25#endif26