brintos

brintos / llvm-project-archived public Read only

0
0
Text · 629 B · 2c85a3c Raw
19 lines · cpp
1//===- Loans.cpp - Loan Implementation --------------------------*- 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-exception6//7//===----------------------------------------------------------------------===//8 9#include "clang/Analysis/Analyses/LifetimeSafety/Loans.h"10 11namespace clang::lifetimes::internal {12 13void Loan::dump(llvm::raw_ostream &OS) const {14  OS << ID << " (Path: ";15  OS << Path.D->getNameAsString() << ")";16}17 18} // namespace clang::lifetimes::internal19