Provide initial implementations of Memory and Process concepts for various
[oota-llvm.git] / lib / System / Path.cpp
index fd7fd4f665b7fd27b3f1e93b0653fac318f20289..ace8505d6130aa692750d5ccd9c999a0f67621fe 100644 (file)
@@ -21,16 +21,6 @@ using namespace sys;
 //===          independent code. 
 //===----------------------------------------------------------------------===//
 
-bool
-Path::is_file() const {
-  return (is_valid() && path[path.length()-1] != '/');
-}
-
-bool
-Path::is_directory() const {
-  return (is_valid() && path[path.length()-1] == '/');
-}
-
 }
 
 // Include the truly platform-specific parts of this class.