From: Gabe Black Date: Sun, 22 Apr 2012 12:20:44 +0000 (-0700) Subject: base: Include cassert in trie.hh. X-Git-Tag: stable_2012_06_28~114 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80c6cdae1879e0f6922cc12af5953084154da781;p=gem5.git base: Include cassert in trie.hh. trie.hh uses assert, but it wasn't explicitly including cassert. --- 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 + #include "base/cprintf.hh" #include "base/misc.hh" #include "base/types.hh"