diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-01-11 00:18:40 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-01-11 00:18:40 +0000 |
commit | 80aeaa20837165713520bc6304e376c8eb606c93 (patch) | |
tree | e6e7010a72396d5369b8256ce0a4de652a470f5f /Basic/FileManager.cpp | |
parent | 88007423f326cfb1c1ebf84461a849c409dbc7e1 (diff) |
Fixed 80-col violation.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45845 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Basic/FileManager.cpp')
-rw-r--r-- | Basic/FileManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Basic/FileManager.cpp b/Basic/FileManager.cpp index eb02278ff7..f228b3ef01 100644 --- a/Basic/FileManager.cpp +++ b/Basic/FileManager.cpp @@ -145,8 +145,8 @@ const FileEntry *FileManager::getFile(const char *NameStart, // It exists. See if we have already opened a file with the same inode. // This occurs when one dir is symlinked to another, for example. FileEntry &UFE = - const_cast<FileEntry&>(*UniqueFiles.insert(FileEntry(StatBuf.st_dev, - StatBuf.st_ino)).first); + const_cast<FileEntry&>(*UniqueFiles.insert(FileEntry(StatBuf.st_dev, + StatBuf.st_ino)).first); NamedFileEnt.setValue(&UFE); |