From 2517617d4ffa13f4c855fbaffb9c6ff569275250 Mon Sep 17 00:00:00 2001 From: Dmitry Sovetin Date: Sun, 17 Apr 2022 12:44:24 +0300 Subject: [PATCH] json11.h rename for VSCode --- .vscode/c_cpp_properties.json | 29 +++++++++++++++++++++++++++++ json11.cpp | 2 +- json11.hpp => json11.h | 0 udpserver.cpp | 2 +- 4 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 .vscode/c_cpp_properties.json rename json11.hpp => json11.h (100%) diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json new file mode 100644 index 0000000..10ecd59 --- /dev/null +++ b/.vscode/c_cpp_properties.json @@ -0,0 +1,29 @@ +{ + "configurations": [ + { + "name": "Linux", + "includePath": [ + "${workspaceFolder}/**", + "/usr/include/**", + "/usr/local/include/**", + "/usr/include/c++/11", + "/usr/include/x86_64-linux-gnu/c++/11", + "/usr/include/c++/11/backward", + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/local/include", + "/usr/include/c++/11/backward", + "/usr/lib/gcc/x86_64-linux-gnu/11/include", + "/usr/include/x86_64-linux-gnu" + ], + "defines": [], + "compilerPath": "/usr/bin/gcc", + "cStandard": "gnu17", + "intelliSenseMode": "linux-gcc-x64", + "cppStandard": "c++11", + "browse": { + "path": [] + } + } + ], + "version": 4 +} \ No newline at end of file diff --git a/json11.cpp b/json11.cpp index e8c4b24..f86d384 100644 --- a/json11.cpp +++ b/json11.cpp @@ -19,7 +19,7 @@ * THE SOFTWARE. */ -#include "json11.hpp" +#include "json11.h" #include #include #include diff --git a/json11.hpp b/json11.h similarity index 100% rename from json11.hpp rename to json11.h diff --git a/udpserver.cpp b/udpserver.cpp index 71817a8..2834e49 100644 --- a/udpserver.cpp +++ b/udpserver.cpp @@ -10,7 +10,7 @@ #include #include -#include "json11.hpp" +#include "json11.h" using namespace std; using namespace json11;