mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2026-01-20 06:04:40 +01:00
Update libraries and make it build on windows.
Still gets some warnings because compilers have changed. But should work.
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
|
||||
#include "Poco/JSON/Parser.h"
|
||||
#include "Poco/JSON/ParseHandler.h"
|
||||
#include "Poco/JSON/Object.h"
|
||||
#include "Poco/JSON/JSONException.h"
|
||||
#include "Poco/Environment.h"
|
||||
#include "Poco/Path.h"
|
||||
@@ -20,7 +20,7 @@
|
||||
#include "Poco/StreamCopier.h"
|
||||
#include "Poco/Stopwatch.h"
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
#include <sstream>
|
||||
|
||||
|
||||
int main(int argc, char** argv)
|
||||
@@ -79,7 +79,7 @@ int main(int argc, char** argv)
|
||||
Poco::JSON::Parser sparser;
|
||||
sw.restart();
|
||||
sparser.parse(jsonStr);
|
||||
Poco::DynamicAny result = sparser.result();
|
||||
Poco::Dynamic::Var result = sparser.result();
|
||||
sw.stop();
|
||||
std::cout << "-----------------------------------------" << std::endl;
|
||||
std::cout << "[std::string] parsed/handled in " << sw.elapsed() << " [us]" << std::endl;
|
||||
|
||||
Reference in New Issue
Block a user