summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_type_traits.cc
blob: 27fec6e1f4944afad962392197508fd0215edf80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//===-- sanitizer_type_traits.cc --------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Implements a subset of C++ type traits. This is so we can avoid depending
// on system C++ headers.
//
//===----------------------------------------------------------------------===//
#include "sanitizer_type_traits.h"

namespace __sanitizer {

const bool true_type::value;
const bool false_type::value;

}  // namespace __sanitizer