diff --git a/src/dotfile.cpp b/src/dotfile.cpp index 70d926b..0f1116f 100644 --- a/src/dotfile.cpp +++ b/src/dotfile.cpp @@ -17,8 +17,6 @@ #include "dotfile.h" -namespace Util { - std::vector Dotfile::s_excludePaths; std::vector Dotfile::s_systemDirectories; std::filesystem::path Dotfile::s_workingDirectory; @@ -301,5 +299,3 @@ bool Dotfile::isSystemTarget(const std::string& target) return false; } - -} // namespace Util diff --git a/src/dotfile.h b/src/dotfile.h index 7597bd9..bcc9b05 100644 --- a/src/dotfile.h +++ b/src/dotfile.h @@ -13,8 +13,6 @@ #include #include -namespace Util { - class Dotfile { public: Dotfile(); @@ -54,6 +52,4 @@ private: static std::filesystem::path s_workingDirectory; }; -} // namespace Util - #endif // DOTFILE_H