std::experimental::filesystem --> std::filesystem
This commit is contained in:
parent
e8ce1c4caf
commit
0e0f79feb9
|
@ -1,13 +1,13 @@
|
||||||
#include "queries.h"
|
#include "queries.h"
|
||||||
|
|
||||||
#include <experimental/filesystem>
|
#include <filesystem>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <regex>
|
#include <regex>
|
||||||
|
|
||||||
#include "benchmark_utils.h"
|
#include "benchmark_utils.h"
|
||||||
|
|
||||||
namespace filesystem = std::experimental::filesystem;
|
namespace filesystem = std::filesystem;
|
||||||
|
|
||||||
std::string getQueryName(unsigned i) {
|
std::string getQueryName(unsigned i) {
|
||||||
if (sql_queries[i].first.empty()) {
|
if (sql_queries[i].first.empty()) {
|
||||||
|
|
Loading…
Reference in New Issue