From 303193ae21b59bb2381dedb9289663e2a587f0f0 Mon Sep 17 00:00:00 2001 From: sdong Date: Thu, 31 Oct 2019 15:06:10 -0700 Subject: [PATCH] An odd fix for GCC 7 --- port/stack_trace.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/port/stack_trace.cc b/port/stack_trace.cc index 76866e63c..e00d6c3b2 100644 --- a/port/stack_trace.cc +++ b/port/stack_trace.cc @@ -20,7 +20,9 @@ void PrintStack(int first_frames_to_skip) {} #include #include #include -#include +// It's odd that including this breaks in GCC 7 but the build doesn't break +// if I remove it even under GCC 4.8. +// #include #include #include #include