From 5f0e38bab0237d57e255fe1f930c8d4dc93e088a Mon Sep 17 00:00:00 2001 From: "Daniel R. Carvalho" Date: Tue, 15 Jun 2021 15:56:50 -0300 Subject: [PATCH] sim: Add missing compiler include Add missing base/compiler.hh include for the namespace deprecation macro. Change-Id: I43fad575fa538be2bef5296938b71ed8eded2ecf Signed-off-by: Daniel R. Carvalho Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/46919 Reviewed-by: Giacomo Travaglini Maintainer: Giacomo Travaglini Tested-by: kokoro --- src/sim/stat_control.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/src/sim/stat_control.hh b/src/sim/stat_control.hh index 71d5614cae..209773cc54 100644 --- a/src/sim/stat_control.hh +++ b/src/sim/stat_control.hh @@ -41,6 +41,7 @@ #ifndef __SIM_STAT_CONTROL_HH__ #define __SIM_STAT_CONTROL_HH__ +#include "base/compiler.hh" #include "base/types.hh" #include "sim/core.hh"