Skip to content

Commit

Permalink
Update interface in packing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
srydell committed May 11, 2022
1 parent 01e9606 commit 2cab48d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/packaging/consumer/src/consumer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

int main() {
if (auto parsed = Parser::parseString("void f();")) {
auto& [globalNamespace, metaData] = parsed.value();
auto& globalNamespace = parsed.value();
auto& functions = globalNamespace.m_functions;
if (functions.size() == 1 && functions[0].m_name == "f") {
// Success!
Expand Down

0 comments on commit 2cab48d

Please sign in to comment.