keyword_modifier_set.cpp 420 B

123456789101112
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. #include "toolchain/check/keyword_modifier_set.h"
  5. namespace Carbon::Check {
  6. CARBON_DEFINE_ENUM_MASK_NAMES(KeywordModifierSet) = {
  7. CARBON_KEYWORD_MODIFIER_SET(CARBON_ENUM_MASK_NAME_STRING)};
  8. } // namespace Carbon::Check