diff options
Diffstat (limited to 'llvm/include/llvm/DebugInfo/Msf/StreamRef.h')
-rw-r--r-- | llvm/include/llvm/DebugInfo/Msf/StreamRef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/DebugInfo/Msf/StreamRef.h b/llvm/include/llvm/DebugInfo/Msf/StreamRef.h index 87e53ce4fa4..ff280c03507 100644 --- a/llvm/include/llvm/DebugInfo/Msf/StreamRef.h +++ b/llvm/include/llvm/DebugInfo/Msf/StreamRef.h @@ -17,7 +17,7 @@ namespace llvm { namespace msf { template <class StreamType, class RefType> class StreamRefBase { public: - StreamRefBase() : Stream(nullptr), Length(0), ViewOffset(0) {} + StreamRefBase() : Stream(nullptr), ViewOffset(0), Length(0) {} StreamRefBase(const StreamType &Stream, uint32_t Offset, uint32_t Length) : Stream(&Stream), ViewOffset(Offset), Length(Length) {} |