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