Remove unnecessary C++17-check.

This commit is contained in:
tastytea 2019-10-01 08:23:23 +02:00
parent 83abaf81b6
commit e8685e9f55
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 10 deletions

View File

@ -14,11 +14,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#if __cplusplus >= 201703L #include <experimental/filesystem>
#include <filesystem>
#else
#include <experimental/filesystem>
#endif
#include <iostream> #include <iostream>
#include <string> #include <string>
#include <fstream> #include <fstream>
@ -31,11 +27,7 @@
#include "xdgcfg.hpp" #include "xdgcfg.hpp"
#include "version.hpp" #include "version.hpp"
#if __cplusplus >= 201703L namespace fs = std::experimental::filesystem;
namespace fs = std::filesystem;
#else
namespace fs = std::experimental::filesystem;
#endif
using std::cout; using std::cout;
using std::cerr; using std::cerr;
using std::endl; using std::endl;