]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/sanitizer_common/sanitizer_type_traits.cc
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / sanitizer_common / sanitizer_type_traits.cc
1 //===-- sanitizer_type_traits.cc --------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Implements a subset of C++ type traits. This is so we can avoid depending
11 // on system C++ headers.
12 //
13 //===----------------------------------------------------------------------===//
14 #include "sanitizer_type_traits.h"
15
16 namespace __sanitizer {
17
18 const bool true_type::value;
19 const bool false_type::value;
20
21 }  // namespace __sanitizer