[llvm] r259231 - Unbreak windows buildbots

David Majnemer via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 29 11:38:03 PST 2016


Author: majnemer
Date: Fri Jan 29 13:38:03 2016
New Revision: 259231

URL: http://llvm.org/viewvc/llvm-project?rev=259231&view=rev
Log:
Unbreak windows buildbots

Modified:
    llvm/trunk/include/llvm/MC/MCCodeView.h

Modified: llvm/trunk/include/llvm/MC/MCCodeView.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/MC/MCCodeView.h?rev=259231&r1=259230&r2=259231&view=diff
==============================================================================
--- llvm/trunk/include/llvm/MC/MCCodeView.h (original)
+++ llvm/trunk/include/llvm/MC/MCCodeView.h Fri Jan 29 13:38:03 2016
@@ -174,7 +174,7 @@ private:
 
   /// The offset of the first and last .cv_loc directive for a given function
   /// id.
-  std::map<int, std::pair<size_t, size_t>> MCCVLineStartStop;
+  std::map<unsigned, std::pair<size_t, size_t>> MCCVLineStartStop;
 
   /// A collection of MCCVLineEntry for each section.
   std::vector<MCCVLineEntry> MCCVLines;




More information about the llvm-commits mailing list