From 342624f27201cce12f5d17c2f9a4640428f8bd39 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 28 Oct 2015 11:02:29 -0400 Subject: [PATCH] FS: Removed unused ostream operator<< --- src/FS.cpp | 7 ------- src/FS.h | 2 -- 2 files changed, 9 deletions(-) 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 ////////////////////////////////////////////////////////////////////////////////