raw_ostream::indent is used for PadToColumn which often prints more
[oota-llvm.git] / lib / System / Path.cpp
index ce4762e56d84ce1d4ad59aa93f7217b525fc5be3..df3357480937534791453ee0c978a1bbf43ba29a 100644 (file)
@@ -29,19 +29,10 @@ bool Path::operator==(const Path &that) const {
   return path == that.path;
 }
 
-bool Path::operator!=(const Path &that) const {
-  return path != that.path;
-}
-
 bool Path::operator<(const Path& that) const {
   return path < that.path;
 }
 
-std::ostream& llvm::operator<<(std::ostream &strm, const sys::Path &aPath) {
-  strm << aPath.toString();
-  return strm;
-}
-
 Path
 Path::GetLLVMConfigDir() {
   Path result;