From 21466099e305f03fff04d31f6ef126f3d6990431 Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Thu, 24 Dec 2015 19:17:54 +0000 Subject: [PATCH] Fix signed/unsigned warning in Line.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256390 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/DebugInfo/CodeView/Line.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.34.1