Skip to content

Commit

Permalink
chore: Standardizes on Particle c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed Oct 17, 2024
1 parent ca01dd6 commit 312117e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"compilerPath": "~\\.particle\\toolchains\\gcc-arm\\10.2.1\\bin\\arm-none-eabi-gcc.exe",
"intelliSenseMode": "windows-gcc-arm",
"cStandard": "c11",
"cppStandard": "c++14",
"cppStandard": "c++11",
"configurationProvider": "particle.particle-vscode-core",
"mergeConfigurations": true,
"browse": {
Expand Down Expand Up @@ -52,7 +52,7 @@
"compilerPath": "/usr/bin/gcc",
"intelliSenseMode": "linux-gcc-x64",
"cStandard": "c11",
"cppStandard": "c++14",
"cppStandard": "c++11",
"configurationProvider": "ms-vscode.cmake-tools",
"mergeConfigurations": true,
"browse": {
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.14)
project(SmartfinTests)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)


Expand Down

0 comments on commit 312117e

Please sign in to comment.