[lld] r205384 - Fix indentation.
Rui Ueyama
ruiu at google.com
Tue Apr 1 18:49:44 PDT 2014
Author: ruiu
Date: Tue Apr 1 20:49:44 2014
New Revision: 205384
URL: http://llvm.org/viewvc/llvm-project?rev=205384&view=rev
Log:
Fix indentation.
Modified:
lld/trunk/include/lld/Core/InputGraph.h
Modified: lld/trunk/include/lld/Core/InputGraph.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/include/lld/Core/InputGraph.h?rev=205384&r1=205383&r2=205384&view=diff
==============================================================================
--- lld/trunk/include/lld/Core/InputGraph.h (original)
+++ lld/trunk/include/lld/Core/InputGraph.h Tue Apr 1 20:49:44 2014
@@ -269,13 +269,13 @@ protected:
/// \brief Read the file into _buffer.
error_code getBuffer(StringRef filePath);
- StringRef _path; // The path of the Input file
- InputGraph::FileVectorT _files; // A vector of lld File objects
- std::unique_ptr<MemoryBuffer> _buffer; // Memory buffer to actual
- // contents
- uint32_t _resolveState; // The resolve state of the file
- uint32_t _nextFileIndex; // The next file that would be processed by the
- // resolver
+ StringRef _path; // The path of the Input file
+ InputGraph::FileVectorT _files; // A vector of lld File objects
+ std::unique_ptr<MemoryBuffer> _buffer; // Memory buffer to actual contents
+ uint32_t _resolveState; // The resolve state of the file
+
+ // The next file that would be processed by the resolver
+ uint32_t _nextFileIndex;
};
/// \brief Represents Internal Input files
More information about the llvm-commits
mailing list