Skip to content

Commit

Permalink
nah
Browse files Browse the repository at this point in the history
  • Loading branch information
user95401 committed Apr 21, 2024
1 parent 37eb983 commit 37dc588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _Src/_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ std::string FilePathFromModFolder(std::string fname) {//they force me
}

auto read_file(std::string_view path) -> std::string {
/*constexpr auto read_size = std::size_t(4096);
constexpr auto read_size = std::size_t(4096);
auto stream = std::ifstream(path.data());
stream.exceptions(std::ios_base::badbit);
if (not stream) {
Expand All @@ -40,7 +40,7 @@ auto read_file(std::string_view path) -> std::string {
out.append(buf, 0, stream.gcount());
}
out.append(buf, 0, stream.gcount());
*/return "test";//out;
return out;
}

std::vector<std::string> explode(const std::string& str, const char& ch) {
Expand Down

0 comments on commit 37dc588

Please sign in to comment.