Upgraded code to switch to C++17. Tested on Debian Buster

This commit is contained in:
emeric
2019-09-10 13:07:06 +02:00
parent 178c400067
commit 2c5917235a
82 changed files with 723 additions and 755 deletions
+4 -4
View File
@@ -19,15 +19,15 @@
#pragma once
#include <filesystem>
#include <string>
#include <vector>
#include <boost/filesystem.hpp>
boost::filesystem::path searchExecPath(std::string filename);
std::filesystem::path searchExecPath(std::string filename);
void computeCrc(const boost::filesystem::path& p, std::vector<unsigned char>& checksum);
void computeCrc(const std::filesystem::path& p, std::vector<unsigned char>& checksum);
// Make sure the given path is a directory
// Create it if needed
bool ensureDirectory(boost::filesystem::path dir);
bool ensureDirectory(const std::filesystem::path& dir);