mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
21 lines
924 B
Diff
21 lines
924 B
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
|
||
|
Date: Wed, 12 Jul 2023 00:10:11 +0200
|
||
|
Subject: [PATCH] Use C++17 for protobuf tests
|
||
|
|
||
|
Recent protobuf no longer supports C++11.
|
||
|
---
|
||
|
test cases/frameworks/5 protocol buffers/meson.build | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/test cases/frameworks/5 protocol buffers/meson.build b/test cases/frameworks/5 protocol buffers/meson.build
|
||
|
index 046847a89297..f9e677c95f8f 100644
|
||
|
--- a/test cases/frameworks/5 protocol buffers/meson.build
|
||
|
+++ b/test cases/frameworks/5 protocol buffers/meson.build
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-project('protocol buffer test', 'cpp', default_options: ['cpp_std=c++11'])
|
||
|
+project('protocol buffer test', 'cpp', default_options: ['cpp_std=c++17'])
|
||
|
|
||
|
protoc = find_program('protoc', required : false)
|
||
|
dep = dependency('protobuf', required : false)
|