migrate from std::filesystem::path to io::path (WIP)

This commit is contained in:
MihailRis
2025-01-30 22:23:13 +03:00
parent 1e22882284
commit e0314803c0
72 changed files with 1189 additions and 791 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "path.hpp"
#include <stdexcept>
using namespace io;
void path::checkValid() const {
if (colonPos == std::string::npos) {
throw std::runtime_error("path entry point is not specified: " + str);
}
}