From: Ted Kremenek Date: Thu, 20 Dec 2007 00:29:44 +0000 (+0000) Subject: Renamed "FileEntry::getDev()" to "FileEntry::getDevice()" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f1752797d4a4344b539ad9452471871c0eec64b;p=clang Renamed "FileEntry::getDev()" to "FileEntry::getDevice()" git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45240 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/FileManager.h b/include/clang/Basic/FileManager.h index bd1ebfb979..3dc3885843 100644 --- a/include/clang/Basic/FileManager.h +++ b/include/clang/Basic/FileManager.h @@ -53,7 +53,7 @@ public: off_t getSize() const { return Size; } unsigned getUID() const { return UID; } ino_t getInode() const { return Inode; } - dev_t getDev() const { return Device; } + dev_t getDevice() const { return Device; } time_t getModificationTime() const { return ModTime; } /// getDir - Return the directory the file lives in.