]> granicus.if.org Git - clang/commitdiff
Fixed 80-col violation.
authorTed Kremenek <kremenek@apple.com>
Fri, 11 Jan 2008 00:18:40 +0000 (00:18 +0000)
committerTed Kremenek <kremenek@apple.com>
Fri, 11 Jan 2008 00:18:40 +0000 (00:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@45845 91177308-0d34-0410-b5e6-96231b3b80d8

Basic/FileManager.cpp

index eb02278ff7bf51d97d6f71ba8b1f1b1e3879619f..f228b3ef01693793c1ba0135bd3e1e35805b4ac8 100644 (file)
@@ -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);