Skip to content

Commit

Permalink
new parser structs
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jul 30, 2024
1 parent e1b9dbd commit 18c5791
Show file tree
Hide file tree
Showing 3 changed files with 202 additions and 295 deletions.
4 changes: 2 additions & 2 deletions pya2l/aml/unmarshal.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

#include "unmarshal.hpp"

auto unmarshal(const std::stringstream& inbuf) -> Root {
auto unmarshal(const std::stringstream& inbuf) -> Node {
auto unm = Unmarshaller(inbuf);
auto result = unm.run();
return Root(result);
return result;
}
Loading

0 comments on commit 18c5791

Please sign in to comment.