Skip to content

Commit

Permalink
fix for new c/cpp versions
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Feb 20, 2024
1 parent 256b734 commit 367bec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base_pack/totp/app_api_table.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ constexpr HashtableApiInterface applicaton_hashtable_api_interface{
.api_version_minor = 0,
.resolver_callback = &elf_resolve_from_hashtable,
},
.table_cbegin = app_api_table.cbegin(),
.table_cend = app_api_table.cend(),
app_api_table.cbegin(),
app_api_table.cend(),
};

extern "C" const ElfApiInterface* const application_api_interface =
Expand Down

0 comments on commit 367bec3

Please sign in to comment.