std::experimental::filesystem --> std::filesystem (#142)
Yepp, thanks. Just curious: Did this cause issues anywhere?
This commit is contained in:
commit
a63232533f
|
@ -1,13 +1,13 @@
|
|||
#include "queries.h"
|
||||
|
||||
#include <experimental/filesystem>
|
||||
#include <filesystem>
|
||||
#include <algorithm>
|
||||
#include <iostream>
|
||||
#include <regex>
|
||||
|
||||
#include "benchmark_utils.h"
|
||||
|
||||
namespace filesystem = std::experimental::filesystem;
|
||||
namespace filesystem = std::filesystem;
|
||||
|
||||
std::string getQueryName(unsigned i) {
|
||||
if (sql_queries[i].first.empty()) {
|
||||
|
|
Loading…
Reference in New Issue