summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <arun@asymptotic.io>2023-08-13 07:24:41 -0400
committerArun Raghavan <arun@asymptotic.io>2023-09-01 11:21:11 -0400
commite2b63d157fcc5ceb67a2f0eaed202d18baa05a11 (patch)
treea82b756971667f957b37cb898d2ff2baed433267
parent421cf15486eea1b52f10e2b0be305018fee8c285 (diff)
build-sys: Bump cpp_std to c++17
Match it with webrtc-audio-processing, which is what we care about. Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/795>
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index daa80b573..ba3d01dac 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project('pulseaudio', 'c',
version : run_command(find_program('git-version-gen'), join_paths(meson.current_source_dir(), '.tarball-version'), check : false).stdout().strip(),
meson_version : '>= 0.50.0',
- default_options : [ 'c_std=gnu11', 'cpp_std=c++11' ]
+ default_options : [ 'c_std=gnu11', 'cpp_std=c++17' ]
)
if not meson.is_subproject()