From 367bec38a0cfb09d3d28c2414f63654936c8c888 Mon Sep 17 00:00:00 2001 From: MX <10697207+xMasterX@users.noreply.github.com> Date: Wed, 21 Feb 2024 00:57:40 +0300 Subject: [PATCH] fix for new c/cpp versions --- base_pack/totp/app_api_table.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base_pack/totp/app_api_table.cpp b/base_pack/totp/app_api_table.cpp index 6c389540afa..d896b4418c4 100644 --- a/base_pack/totp/app_api_table.cpp +++ b/base_pack/totp/app_api_table.cpp @@ -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 =