FileEntry.cpp 815 B

123456789101112131415161718192021222324
  1. //===- FileEntry.cpp - File references --------------------------*- 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. /// Defines implementation for clang::FileEntry and clang::FileEntryRef.
  11. //
  12. //===----------------------------------------------------------------------===//
  13. #include "clang/Basic/FileEntry.h"
  14. #include "llvm/Support/MemoryBuffer.h"
  15. #include "llvm/Support/VirtualFileSystem.h"
  16. using namespace clang;
  17. FileEntry::FileEntry() : UniqueID(0, 0) {}
  18. FileEntry::~FileEntry() = default;
  19. void FileEntry::closeFile() const { File.reset(); }