Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
[DNM] Bump C++ standard to C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
saper committed Apr 21, 2021
1 parent 4115e9d commit 9be2da4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
}
},
'xcode_settings': {
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
'CLANG_CXX_LANGUAGE_STANDARD': 'c++14',
'CLANG_CXX_LIBRARY': 'libc++',
'OTHER_LDFLAGS': [],
'GCC_ENABLE_CPP_EXCEPTIONS': 'NO',
Expand Down Expand Up @@ -81,7 +81,7 @@
}],
['OS!="win"', {
'cflags_cc+': [
'-std=c++0x'
'-std=c++14'
]
}]
]
Expand Down
4 changes: 2 additions & 2 deletions src/libsass.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
'conditions': [
['OS=="mac"', {
'xcode_settings': {
'CLANG_CXX_LANGUAGE_STANDARD': 'c++11',
'CLANG_CXX_LANGUAGE_STANDARD': 'c++14',
'CLANG_CXX_LIBRARY': 'libc++',
'OTHER_LDFLAGS': [],
'GCC_ENABLE_CPP_EXCEPTIONS': 'YES',
Expand All @@ -105,7 +105,7 @@
}],
['OS!="win"', {
'cflags_cc+': [
'-std=c++0x'
'-std=c++14'
]
}]
]
Expand Down

0 comments on commit 9be2da4

Please sign in to comment.