File: robin_map.patch

package info (click to toggle)
veryfasttree 4.0.5%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,272 kB
  • sloc: cpp: 7,403; python: 209; sh: 38; makefile: 36
file content (20 lines) | stat: -rw-r--r-- 823 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Description: bump standard c++ to 2017.
 Bumping to the C++ 2017 fixes build failures introduced by robin_map
 1.4.0, which relies on the newer standard to operate properly.
Author: Étienne Mollier <emollier@debian.org>
Bug: https://github.com/citiususc/veryfasttree/issues/26
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1118378
Last-Update: 2025-10-24
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- veryfasttree.orig/CMakeLists.txt
+++ veryfasttree/CMakeLists.txt
@@ -1,7 +1,7 @@
 cmake_minimum_required(VERSION 3.5...3.27)
 project(VeryFastTree)
 
-set(CMAKE_CXX_STANDARD 11)
+set(CMAKE_CXX_STANDARD 17)
 
 option(USE_SHARED "enable/disable linking of system shared libraries" OFF)
 option(USE_NATIVE "enable/disable system's processor architecture optimization (linux)" ON)