From 7b01d357a29d6aa0dcafb04a9a370332e33eaae1 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Fri, 13 Sep 2019 21:00:19 +0000 Subject: [PATCH] Include in unwind-arm.h, since it uses uint32_t and uint64_t in various declarations. Otherwise, depending on how unwind-arm.h is included from other source files, the compiler may complain that uint32_t and uint64_t are unknown types. MFC after: 3 days --- contrib/libcxxrt/unwind-arm.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/libcxxrt/unwind-arm.h b/contrib/libcxxrt/unwind-arm.h index 4dc639882bca..a4bf1bd058bc 100644 --- a/contrib/libcxxrt/unwind-arm.h +++ b/contrib/libcxxrt/unwind-arm.h @@ -20,6 +20,9 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ +/* For uint32_t and uint64_t */ +#include + /** * ARM-specific unwind definitions. These are taken from the ARM EHABI * specification.