From 0c6a283b2ab8f921e30686984ccfa89c07296d3e Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 5 Nov 2004 22:15:36 +0000 Subject: Stop propagating method names that violate the coding standard llvm-svn: 17498 --- llvm/lib/System/AIX/Path.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib/System/AIX/Path.cpp') diff --git a/llvm/lib/System/AIX/Path.cpp b/llvm/lib/System/AIX/Path.cpp index 0d6c7fbd152..8eddb967bd3 100644 --- a/llvm/lib/System/AIX/Path.cpp +++ b/llvm/lib/System/AIX/Path.cpp @@ -24,7 +24,7 @@ using namespace sys; //===----------------------------------------------------------------------===// bool -Path::is_valid() const { +Path::isValid() const { if (path.empty()) return false; if (path.length() >= MAXPATHLEN) @@ -43,8 +43,8 @@ Path::GetTemporaryDirectory() { if (!mkdir(TmpName, S_IRWXU)) ThrowErrno(std::string(TmpName) + ": Can't create temporary directory"); Path result; - result.set_directory(TmpName); - assert(result.is_valid() && "mkdtemp didn't create a valid pathname!"); + result.setDirectory(TmpName); + assert(result.isValid() && "mkdtemp didn't create a valid pathname!"); return result; } -- cgit v1.2.3