summaryrefslogtreecommitdiff
path: root/plugins/efi_resolver
diff options
context:
space:
mode:
authorMark Rowe <mark@vector35.com>2025-08-01 00:09:42 -0700
committerMark Rowe <mark@vector35.com>2025-08-08 22:01:27 -0700
commitcde1c38689188efbfd47cd9509beb348284d486b (patch)
tree32b23339fb9919c17da3fe2cc30ee59a137469f3 /plugins/efi_resolver
parent72e0b2f89352bf45af44629c97741977090dcd78 (diff)
Update remaining projects to C++20
Diffstat (limited to 'plugins/efi_resolver')
-rw-r--r--plugins/efi_resolver/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
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.