[lldb] Add ability to hide the root name of a value
[llvm-project.git] / flang / lib / Semantics / check-declarations.h
blob3b50bac4f5e7bbb0deef0b090ecbe41e2776c60e
1 //===-- lib/Semantics/check-declarations.h ----------------------*- 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 //===----------------------------------------------------------------------===//
9 // Static declaration checks
11 #ifndef FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
12 #define FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
13 namespace Fortran::semantics {
14 class SemanticsContext;
15 void CheckDeclarations(SemanticsContext &);
16 } // namespace Fortran::semantics
17 #endif