Browse Source

Manager: Remove Dotfile from namespace

master
Riyyi 3 years ago
parent
commit
9ff368e511
  1. 4
      src/dotfile.cpp
  2. 4
      src/dotfile.h

4
src/dotfile.cpp

@ -17,8 +17,6 @@
#include "dotfile.h"
namespace Util {
std::vector<Dotfile::ExcludePath> Dotfile::s_excludePaths;
std::vector<std::filesystem::path> Dotfile::s_systemDirectories;
std::filesystem::path Dotfile::s_workingDirectory;
@ -301,5 +299,3 @@ bool Dotfile::isSystemTarget(const std::string& target)
return false;
}
} // namespace Util

4
src/dotfile.h

@ -13,8 +13,6 @@
#include <string>
#include <vector>
namespace Util {
class Dotfile {
public:
Dotfile();
@ -54,6 +52,4 @@ private:
static std::filesystem::path s_workingDirectory;
};
} // namespace Util
#endif // DOTFILE_H

Loading…
Cancel
Save