Skip to content

Commit 1c69481

Browse files
committed
Fix compile error on clang for WSL
1 parent 4a7c77d commit 1c69481

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Validation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1923,7 +1923,7 @@ std::string ValidateExecutableVisitor::getFieldType(const _FieldTypes& fields, c
19231923
if (itrName != itrEnd
19241924
&& itrName->second.type() == response::Type::String)
19251925
{
1926-
result = itrName->second.get<response::StringType>();
1926+
result = itrName->second.template get<response::StringType>();
19271927
}
19281928
else if (itrOfType != itrEnd
19291929
&& itrOfType->second.type() == response::Type::Map)

0 commit comments

Comments
 (0)