Fix json key automatic ordering error when creating Score from json
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include "ReportsPaged.h"
|
||||
|
||||
namespace platform {
|
||||
using json = nlohmann::json;
|
||||
using json = nlohmann::ordered_json;
|
||||
|
||||
|
||||
class DatasetsConsole : public ReportsPaged {
|
||||
|
@@ -3,7 +3,7 @@
|
||||
#include <nlohmann/json.hpp>
|
||||
#include "reports/ExcelFile.h"
|
||||
|
||||
using json = nlohmann::json;
|
||||
using json = nlohmann::ordered_json;
|
||||
|
||||
namespace platform {
|
||||
|
||||
|
@@ -6,7 +6,7 @@
|
||||
#include "common/Paths.h"
|
||||
#include "common/Symbols.h"
|
||||
|
||||
using json = nlohmann::json;
|
||||
using json = nlohmann::ordered_json;
|
||||
namespace platform {
|
||||
|
||||
class ReportBase {
|
||||
|
@@ -5,7 +5,7 @@
|
||||
#include <nlohmann/json.hpp>
|
||||
|
||||
namespace platform {
|
||||
using json = nlohmann::json;
|
||||
using json = nlohmann::ordered_json;
|
||||
|
||||
class ReportsPaged {
|
||||
public:
|
||||
|
Reference in New Issue
Block a user