From cde1c38689188efbfd47cd9509beb348284d486b Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Fri, 1 Aug 2025 00:09:42 -0700 Subject: Update remaining projects to C++20 --- plugins/efi_resolver/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/efi_resolver') diff --git a/plugins/efi_resolver/CMakeLists.txt b/plugins/efi_resolver/CMakeLists.txt index 03fabbf6..90f30960 100644 --- a/plugins/efi_resolver/CMakeLists.txt +++ b/plugins/efi_resolver/CMakeLists.txt @@ -26,7 +26,7 @@ file( add_library(efi_resolver SHARED ${SOURCE_FILES}) target_link_libraries(efi_resolver binaryninjaapi) target_include_directories(${PROJECT_NAME} PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/include") -target_compile_features(efi_resolver PRIVATE cxx_std_17 c_std_99) +target_compile_features(efi_resolver PRIVATE cxx_std_20 c_std_99) # Library targets linking against the Binary Ninja API need to be compiled with # position-independent code on Linux. -- cgit v1.3.1