Skip to content
Snippets Groups Projects
Commit db0c3ac3 authored by Raphael Grimm's avatar Raphael Grimm
Browse files

Add simox::fs::remove_trailing_separator

parent e1f643f3
No related branches found
No related tags found
No related merge requests found
......@@ -52,6 +52,8 @@ SET(INCLUDES
SimoxUtility.h
EigenStdVector.h
filesystem/remove_trailing_separator.h
meta/eigen/enable_if_compile_time_size.h
meta/has_member_macros/has_member.hpp
......
#pragma once
// This file is generated!
#include "filesystem/remove_trailing_separator.h"
#pragma once
#include <filesystem>
namespace simox::fs
{
using namespace std::filesystem;
inline fs::path remove_trailing_separator(fs::path p)
{
p /= "dummy";
return p.parent_path();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment