[cfe-commits] r45240 - /cfe/trunk/include/clang/Basic/FileManager.h
Ted Kremenek
kremenek at apple.com
Wed Dec 19 16:29:45 PST 2007
Author: kremenek
Date: Wed Dec 19 18:29:44 2007
New Revision: 45240
URL: http://llvm.org/viewvc/llvm-project?rev=45240&view=rev
Log:
Renamed "FileEntry::getDev()" to "FileEntry::getDevice()"
Modified:
cfe/trunk/include/clang/Basic/FileManager.h
Modified: cfe/trunk/include/clang/Basic/FileManager.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/FileManager.h?rev=45240&r1=45239&r2=45240&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/FileManager.h (original)
+++ cfe/trunk/include/clang/Basic/FileManager.h Wed Dec 19 18:29:44 2007
@@ -53,7 +53,7 @@
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.
More information about the cfe-commits
mailing list