1//===--- BitmaskEnum.h - wrapper of LLVM's bitmask enum facility-*- C++ -*-===//
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-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10/// Provides LLVM's BitmaskEnum facility to enumeration types declared in
11/// namespace clang.
12///
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_CLANG_BASIC_BITMASKENUM_H
16#define LLVM_CLANG_BASIC_BITMASKENUM_H
17
18#include "llvm/ADT/BitmaskEnum.h"
19
20namespace clang {
21 LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE();
22}
23
24#endif
25

source code of clang/include/clang/Basic/BitmaskEnum.h