From: Nilay Vaish Date: Mon, 25 Apr 2011 17:23:37 +0000 (-0500) Subject: base: include types.hh in base/stats/mysql.hh X-Git-Tag: stable_2012_02_02~373 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9e3cdbf516b0be66dcbe760b190cb5fae04c240c;p=gem5.git base: include types.hh in base/stats/mysql.hh Due to certain changes made via changeset 8229, the compilation was failing in certain cases. The compiler pointed to base/stats/mysql.hh for not naming a certain types like uint64_t. To rectify this, base/types.hh is being included in base/stats/mysql.hh. --- diff --git a/src/base/stats/mysql.hh b/src/base/stats/mysql.hh index 3422e48f9..caee2a1c2 100644 --- a/src/base/stats/mysql.hh +++ b/src/base/stats/mysql.hh @@ -37,6 +37,7 @@ #include #include "base/stats/output.hh" +#include "base/types.hh" #include "config/use_mysql.hh" namespace MySQL { class Connection; }