From: Dave Bartolomeo Date: Thu, 24 Dec 2015 19:17:54 +0000 (+0000) Subject: Fix signed/unsigned warning in Line.h. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=21466099e305f03fff04d31f6ef126f3d6990431;p=oota-llvm.git Fix signed/unsigned warning in Line.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256390 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/DebugInfo/CodeView/Line.h b/include/llvm/DebugInfo/CodeView/Line.h index fb24f01cdef..a7cdbdaac32 100644 --- a/include/llvm/DebugInfo/CodeView/Line.h +++ b/include/llvm/DebugInfo/CodeView/Line.h @@ -17,8 +17,8 @@ namespace codeview { class LineInfo { public: - static const int32_t AlwaysStepIntoLineNumber = 0xfeefee; - static const int32_t NeverStepIntoLineNumber = 0xf00f00; + static const uint32_t AlwaysStepIntoLineNumber = 0xfeefee; + static const uint32_t NeverStepIntoLineNumber = 0xf00f00; private: static const uint32_t StartLineMask = 0x00ffffff;