diff --git a/src/FS.cpp b/src/FS.cpp index d73dd872b..a8c09d4b1 100644 --- a/src/FS.cpp +++ b/src/FS.cpp @@ -55,13 +55,6 @@ #define GLOB_BRACE 0 #endif -//////////////////////////////////////////////////////////////////////////////// -std::ostream& operator<< (std::ostream& out, const Path& path) -{ - out << path._data; - return out; -} - //////////////////////////////////////////////////////////////////////////////// Path::Path () { diff --git a/src/FS.h b/src/FS.h index d44df7e2d..bc9c505c8 100644 --- a/src/FS.h +++ b/src/FS.h @@ -147,8 +147,6 @@ private: bool remove_directory (const std::string&) const; }; -std::ostream& operator<< (std::ostream&, const Path&); - #endif ////////////////////////////////////////////////////////////////////////////////