put using json=nlohmann:ordered_json under namespace platform

This commit is contained in:
2024-05-17 18:32:01 +02:00
parent a3c4bde460
commit 577351eda5
10 changed files with 19 additions and 17 deletions

View File

@@ -5,10 +5,9 @@
#include <nlohmann/json.hpp>
#include "reports/ExcelFile.h"
using json = nlohmann::ordered_json;
namespace platform {
using json = nlohmann::ordered_json;
class BestResultsExcel : public ExcelFile {
public:
BestResultsExcel(const std::string& score, const std::vector<std::string>& datasets);