173
|
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 //===----------------------------------------------------------------------===//
|
|
8
|
|
9 // Static declaration checks
|
|
10
|
|
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
|