diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2011-04-25 12:23:37 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2011-04-25 12:23:37 -0500 |
commit | 9e3cdbf516b0be66dcbe760b190cb5fae04c240c (patch) | |
tree | 33366d88f919fa73950c27c7c8a543bfd81f33eb | |
parent | 0554885eb941d547eca3400566fb9636599c1b39 (diff) | |
download | gem5-9e3cdbf516b0be66dcbe760b190cb5fae04c240c.tar.xz |
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.
-rw-r--r-- | src/base/stats/mysql.hh | 1 |
1 files changed, 1 insertions, 0 deletions
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 <string> #include "base/stats/output.hh" +#include "base/types.hh" #include "config/use_mysql.hh" namespace MySQL { class Connection; } |