tiny fix
remove unnecessary whitespace
This commit is contained in:
parent
a44e53ee6a
commit
50e3c6dc47
@ -10,7 +10,7 @@
|
|||||||
std::vector<fs::path> find_all_files(fs::path path) {
|
std::vector<fs::path> find_all_files(fs::path path) {
|
||||||
std::vector<fs::path> files = {};
|
std::vector<fs::path> files = {};
|
||||||
|
|
||||||
for (const fs::directory_entry & entry : fs::directory_iterator(path))
|
for (const fs::directory_entry &entry : fs::directory_iterator(path))
|
||||||
if (!entry.is_directory())
|
if (!entry.is_directory())
|
||||||
files.insert(files.begin()+files.size(), entry.path());
|
files.insert(files.begin()+files.size(), entry.path());
|
||||||
|
|
||||||
@ -21,7 +21,7 @@ std::vector<fs::path> find_all_files(fs::path path) {
|
|||||||
std::vector<fs::path> find_all_folders(fs::path path) {
|
std::vector<fs::path> find_all_folders(fs::path path) {
|
||||||
std::vector<fs::path> folders = {};
|
std::vector<fs::path> folders = {};
|
||||||
|
|
||||||
for (const fs::directory_entry & entry : fs::directory_iterator(path))
|
for (const fs::directory_entry &entry : fs::directory_iterator(path))
|
||||||
if (entry.is_directory())
|
if (entry.is_directory())
|
||||||
folders.insert(folders.begin()+folders.size(), entry.path());
|
folders.insert(folders.begin()+folders.size(), entry.path());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user