FS: Removed unused ostream operator<<

This commit is contained in:
Paul Beckingham 2015-10-28 11:02:29 -04:00
parent 8b1a21d206
commit 342624f272
2 changed files with 0 additions and 9 deletions

View file

@ -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 ()
{

View file

@ -147,8 +147,6 @@ private:
bool remove_directory (const std::string&) const;
};
std::ostream& operator<< (std::ostream&, const Path&);
#endif
////////////////////////////////////////////////////////////////////////////////