diff options
| -rw-r--r-- | llvm/include/llvm/DebugInfo/CodeView/Line.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/DebugInfo/CodeView/Line.h b/llvm/include/llvm/DebugInfo/CodeView/Line.h index fb24f01cdef..a7cdbdaac32 100644 --- a/llvm/include/llvm/DebugInfo/CodeView/Line.h +++ b/llvm/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; |

