From 5a630e7bc61de52f80dc085b00649e005fd6f2eb Mon Sep 17 00:00:00 2001 From: Tyler Veness Date: Wed, 15 May 2024 01:31:55 -0700 Subject: [PATCH] Make pybind11_mkdoc use C++23 (#532) --- cmake/modules/Pybind11Mkdoc.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/Pybind11Mkdoc.cmake b/cmake/modules/Pybind11Mkdoc.cmake index 68173de4..3873ada9 100644 --- a/cmake/modules/Pybind11Mkdoc.cmake +++ b/cmake/modules/Pybind11Mkdoc.cmake @@ -16,7 +16,7 @@ function(pybind11_mkdoc target headers) COMMAND ${env_vars} ${Python3_EXECUTABLE} -m pybind11_mkdoc ${headers} -o ${CMAKE_CURRENT_SOURCE_DIR}/jormungandr/cpp/Docstrings.hpp - -I/usr/lib/clang/17/include ${target_dirs} ${eigen_dirs} -std=c++20 + -I/usr/lib/clang/17/include ${target_dirs} ${eigen_dirs} -std=c++23 DEPENDS ${headers} USES_TERMINAL )