fixed missing decleration of paths

This commit is contained in:
Zastian Pretorius
2021-10-23 03:31:09 +02:00
parent d906d0020f
commit 58e1b9be84
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -7,5 +7,5 @@ fsorter
CMakeFiles/ CMakeFiles/
settings.conf settings.conf
cmake_install.cmake cmake_install.cmake
CMakeCach.txt CMakeCache.txt
Makefile Makefile

View File

@@ -54,6 +54,7 @@ std::vector<std::string> readSettings()
std::vector<typeAndPaths> declarePaths(std::vector<std::string> listOfPaths) std::vector<typeAndPaths> declarePaths(std::vector<std::string> listOfPaths)
{ {
typeAndPaths Paths; typeAndPaths Paths;
std::vector<typeAndPaths> paths;
for (int i = 0; i < listOfPaths.size(); i+=3) for (int i = 0; i < listOfPaths.size(); i+=3)
{ {
listOfPaths[i].pop_back(); listOfPaths[i].pop_back();
@@ -124,7 +125,6 @@ void sortPath(std::string path, std::vector<typeAndPaths> Paths)
{ {
if(file.path().has_extension()) if(file.path().has_extension())
{ {
std::cout << file.path().extension() << '\n';
for (int i = 0; i < Paths.size(); i++) { for (int i = 0; i < Paths.size(); i++) {
for (int x = 0; x < Paths[i].extentions.size(); x++) { for (int x = 0; x < Paths[i].extentions.size(); x++) {
if(Paths[i].extentions[x] == file.path().extension()) if(Paths[i].extentions[x] == file.path().extension())