AttrImpl.cpp 694 B

12345678910111213141516171819
  1. //===--- AttrImpl.cpp - Classes for representing attributes -----*- 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. // This file contains out-of-line methods for Attr classes.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #include "clang/AST/ASTContext.h"
  13. #include "clang/AST/Attr.h"
  14. #include "clang/AST/Expr.h"
  15. #include "clang/AST/Type.h"
  16. using namespace clang;
  17. #include "clang/AST/AttrImpl.inc"