-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(x11/mumble-server): Fix compiling with latest abseil-cpp
This fixes the following compiler error. /usr/include/absl/utility/utility.h:82:12: error: no member named 'in_place_t' in namespace 'std' using std::in_place_t; ~~~~~^
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- a/CMakeLists.txt | ||
+++ b/CMakeLists.txt | ||
@@ -37,7 +37,7 @@ | ||
set(3RDPARTY_DIR "${CMAKE_SOURCE_DIR}/3rdparty") | ||
set(PLUGINS_DIR "${CMAKE_SOURCE_DIR}/plugins") | ||
|
||
-set(CMAKE_CXX_STANDARD 14) | ||
+set(CMAKE_CXX_STANDARD 17) | ||
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.13) | ||
|
||
list(APPEND CMAKE_MODULE_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters