llvm/clang/include/clang/Sema/Weak.h

//===-- UnresolvedSet.h - Unresolved sets of declarations  ------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
//  This file defines the WeakInfo class, which is used to store
//  information about the target of a #pragma weak directive.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_CLANG_SEMA_WEAK_H
#define LLVM_CLANG_SEMA_WEAK_H

#include "clang/Basic/SourceLocation.h"
#include "llvm/ADT/DenseMapInfo.h"

namespace clang {

class IdentifierInfo;

/// Captures information about a \#pragma weak directive.
class WeakInfo {};

} // end namespace clang

#endif // LLVM_CLANG_SEMA_WEAK_H