Skip to content

Commit 36b2a09

Browse files
committed
fix windows - do repeat default argument value
1 parent faf3554 commit 36b2a09

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

flang/include/flang/Evaluate/check-expression.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,19 @@ template <typename A>
115115
std::optional<bool> IsContiguous(const A &, FoldingContext &,
116116
bool namedConstantSectionsAreContiguous = true);
117117
extern template std::optional<bool> IsContiguous(const Expr<SomeType> &,
118-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
118+
FoldingContext &, bool namedConstantSectionsAreContiguous);
119119
extern template std::optional<bool> IsContiguous(const ArrayRef &,
120-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
120+
FoldingContext &, bool namedConstantSectionsAreContiguous);
121121
extern template std::optional<bool> IsContiguous(const Substring &,
122-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
122+
FoldingContext &, bool namedConstantSectionsAreContiguous);
123123
extern template std::optional<bool> IsContiguous(const Component &,
124-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
124+
FoldingContext &, bool namedConstantSectionsAreContiguous);
125125
extern template std::optional<bool> IsContiguous(const ComplexPart &,
126-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
126+
FoldingContext &, bool namedConstantSectionsAreContiguous);
127127
extern template std::optional<bool> IsContiguous(const CoarrayRef &,
128-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
129-
extern template std::optional<bool> IsContiguous(const Symbol &,
130-
FoldingContext &, bool namedConstantSectionsAreContiguous = true);
128+
FoldingContext &, bool namedConstantSectionsAreContiguous);
129+
extern template std::optional<bool> IsContiguous(
130+
const Symbol &, FoldingContext &, bool namedConstantSectionsAreContiguous);
131131
static inline std::optional<bool> IsContiguous(const SymbolRef &s,
132132
FoldingContext &c, bool namedConstantSectionsAreContiguous = true) {
133133
return IsContiguous(s.get(), c, namedConstantSectionsAreContiguous);

0 commit comments

Comments
 (0)