Skip to content
Snippets Groups Projects
Unverified Commit 5095837e authored by Gregor Barth's avatar Gregor Barth Committed by GitHub
Browse files

Merge pull request #1 from walachey/master

allow compilation with GCC 7 (without <filesystem> header)
parents fb5277b9 5f3c0382
Branches
No related tags found
No related merge requests found
Pipeline #12972 passed
#include "PluginLoader.h"
#include <QDebug>
#include <vector>
#include <filesystem>
#include <sstream>
#if __has_include(<filesystem>)
#include <filesystem>
#else
#include <experimental/filesystem>
namespace std
{
namespace filesystem = std::experimental::filesystem;
};
#endif
#ifdef _WIN32
#include <stdio.h>
#include <tchar.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment