Unverified Commit b53d207f authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

Update file_helper.h

parent fde12195
...@@ -134,7 +134,7 @@ public: ...@@ -134,7 +134,7 @@ public:
if (folder_index != fname.npos && folder_index >= ext_index - 1) if (folder_index != fname.npos && folder_index >= ext_index - 1)
return std::make_tuple(fname, spdlog::filename_t()); return std::make_tuple(fname, spdlog::filename_t());
// finally - return a valid base and extnetion tuple // finally - return a valid base and extension tuple
return std::make_tuple(fname.substr(0, ext_index), fname.substr(ext_index)); return std::make_tuple(fname.substr(0, ext_index), fname.substr(ext_index));
} }
private: private:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment