mergerfs/src/fs_pathvector.hpp
2023-01-29 11:51:56 -05:00

11 lines
118 B
C++

#pragma once
#include "fs_path.hpp"
#include <vector>
namespace fs
{
typedef std::vector<fs::Path> PathVector;
}