DarwinParser: include limits

In debug mode, we have assertions that the values do not exceed the
limits of the type holding them.  In order to account for the type being
derived from the AddressSpace and thus a typedef, we use
`std::numeric_limits`.  Include the appropriate header.

Thanks to Marshal Clow for pointing out the missing include!

llvm-svn: 297744
This commit is contained in:
Saleem Abdulrasool 2017-03-14 15:17:55 +00:00
parent bb114f84e7
commit 01cf8d3348

View File

@ -17,6 +17,7 @@
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <limits>
#include "libunwind.h"
#include "dwarf2.h"