diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2012-04-22 05:20:44 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2012-04-22 05:20:44 -0700 |
commit | 80c6cdae1879e0f6922cc12af5953084154da781 (patch) | |
tree | 468b9e1b45bb173b2c332b74047b187c4f409725 | |
parent | 29329e61b7ca28e14173fb01fdc21396a5507b5d (diff) | |
download | gem5-80c6cdae1879e0f6922cc12af5953084154da781.tar.xz |
base: Include cassert in trie.hh.
trie.hh uses assert, but it wasn't explicitly including cassert.
-rw-r--r-- | src/base/trie.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/base/trie.hh b/src/base/trie.hh index a5aca2c6f..e6b2881ab 100644 --- a/src/base/trie.hh +++ b/src/base/trie.hh @@ -31,6 +31,8 @@ #ifndef __BASE_TRIE_HH__ #define __BASE_TRIE_HH__ +#include <cassert> + #include "base/cprintf.hh" #include "base/misc.hh" #include "base/types.hh" |