Compare commits

...

3 Commits

Author SHA1 Message Date
Dmitry Sovetin
15b4013868 Изменения, которые будут включены в коммит:
изменено:      .gitignore
	удалено:       .vscode/c_cpp_properties.json
2022-06-15 13:52:02 +03:00
Dmitry Sovetin
2517617d4f json11.h rename for VSCode 2022-04-17 12:44:24 +03:00
Dmitry Sovetin
cd0a0d5e44 Version 2022-04-16 09:34:49 +03:00
4 changed files with 4 additions and 2 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
udpserver
*.log
*.pid
.vscode

View File

@@ -19,7 +19,7 @@
* THE SOFTWARE.
*/
#include "json11.hpp"
#include "json11.h"
#include <cassert>
#include <cmath>
#include <cstdlib>

View File

@@ -1,5 +1,6 @@
/* g++ -o udpserver udpserver.cpp -std=c++11 json11.cpp -pthread -s -O2 */
/* udpserver 127.0.0.1 10003 */
/* Version 2022.04 */
#include <iostream>
#include <sstream>
@@ -9,7 +10,7 @@
#include <signal.h>
#include <thread>
#include "json11.hpp"
#include "json11.h"
using namespace std;
using namespace json11;