]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
Merge clang 7.0.1 and several follow-up changes
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / BitmaskEnum.h
1 //===--- BitmaskEnum.h - wrapper of LLVM's bitmask enum facility-*- 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 /// \file
11 /// Provides LLVM's BitmaskEnum facility to enumeration types declared in
12 /// namespace clang.
13 ///
14 //===----------------------------------------------------------------------===//
15
16 #ifndef LLVM_CLANG_BASIC_BITMASKENUM_H
17 #define LLVM_CLANG_BASIC_BITMASKENUM_H
18
19 #include "llvm/ADT/BitmaskEnum.h"
20
21 namespace clang {
22   LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
23 }
24
25 #endif