Skip to content

Commit

Permalink
fix: gcc build
Browse files Browse the repository at this point in the history
  • Loading branch information
iboB committed Dec 4, 2024
1 parent b2e235a commit e3d2591
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schema/code/ac/schema/IOVisitors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ struct ToDictVisitor {

template <typename T>
static void writeToDict(Dict& out, Blob& value) {
out = ac::Dict::binary(std::move(Blob));
out = ac::Dict::binary(std::move(value));
}

template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion schema/code/ac/schema/SchemaVisitor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ struct SchemaVisitor {

template <typename T, typename Dict>
void Struct_toSchema(Dict& out) {
SchemaVisitor<Dict>::describeField<T>(out);
SchemaVisitor<Dict>::template describeField<T>(out);
}

} // namespace ac::local::schema
Expand Down

0 comments on commit e3d2591

Please sign in to comment.