Coverage Report

Created: 2024-01-17 10:31

/src/llvm-project/clang/lib/Basic/FileEntry.cpp
Line
Count
Source (jump to first uncovered line)
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
14
#include "clang/Basic/FileEntry.h"
15
#include "llvm/Support/MemoryBuffer.h"
16
#include "llvm/Support/VirtualFileSystem.h"
17
18
using namespace clang;
19
20
1.93k
FileEntry::FileEntry() : UniqueID(0, 0) {}
21
22
1.93k
FileEntry::~FileEntry() = default;
23
24
0
void FileEntry::closeFile() const { File.reset(); }