xref: /llvm-project/flang/include/flang/Lower/EnvironmentDefault.h (revision 0ec3ac9b7fbd15698af7289e1214e8ff3d82ec14)
1 //===-- Lower/EnvironmentDefault.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 #ifndef FORTRAN_LOWER_ENVIRONMENTDEFAULT_H
10 #define FORTRAN_LOWER_ENVIRONMENTDEFAULT_H
11 
12 #include <string>
13 
14 namespace Fortran::lower {
15 
16 struct EnvironmentDefault {
17   std::string varName;
18   std::string defaultValue;
19 };
20 
21 } // namespace Fortran::lower
22 
23 #endif // FORTRAN_LOWER_ENVIRONMENTDEFAULT_H
24