summaryrefslogtreecommitdiff
path: root/plugins/workflow_objc
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/workflow_objc
parent72e0b2f89352bf45af44629c97741977090dcd78 (diff)
Update remaining projects to C++20
Diffstat (limited to 'plugins/workflow_objc')
-rw-r--r--plugins/workflow_objc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/workflow_objc/CMakeLists.txt b/plugins/workflow_objc/CMakeLists.txt
index afb31972..61ba4962 100644
--- a/plugins/workflow_objc/CMakeLists.txt
+++ b/plugins/workflow_objc/CMakeLists.txt
@@ -27,7 +27,7 @@ set(PLUGIN_SOURCE
add_library(workflow_objc SHARED ${PLUGIN_SOURCE})
target_link_libraries(workflow_objc binaryninjaapi)
-target_compile_features(workflow_objc PRIVATE cxx_std_17 c_std_99)
+target_compile_features(workflow_objc 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.