2020-02-25 23:11:52 +08:00
|
|
|
//===-- lib/Semantics/check-declarations.h ----------------------*- C++ -*-===//
|
2019-09-11 08:08:18 +08:00
|
|
|
//
|
2019-12-21 04:52:07 +08:00
|
|
|
// 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
|
2019-09-11 08:08:18 +08:00
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2019-09-11 08:08:18 +08:00
|
|
|
|
|
|
|
// Static declaration checks
|
|
|
|
|
|
|
|
#ifndef FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
|
|
|
|
#define FORTRAN_SEMANTICS_CHECK_DECLARATIONS_H_
|
|
|
|
namespace Fortran::semantics {
|
|
|
|
class SemanticsContext;
|
|
|
|
void CheckDeclarations(SemanticsContext &);
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::semantics
|
2019-09-11 08:08:18 +08:00
|
|
|
#endif
|