Skip to content

Commit

Permalink
misc: fix property order of case-when serializer.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashigeru committed Aug 16, 2024
1 parent 359f38a commit 786f420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mizugaki/ast/scalar/case_when_clause.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ ::takatori::serializer::object_acceptor& operator<<(::takatori::serializer::obje
using namespace common::serializers;
using namespace std::string_view_literals;
auto obj = struct_block(acceptor);
property(acceptor, "result"sv, *value.result_);
property(acceptor, "when"sv, *value.when_);
property(acceptor, "result"sv, *value.result_);
region_property(acceptor, value);
return acceptor;
}
Expand Down

0 comments on commit 786f420

Please sign in to comment.