summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2012-04-22 05:20:44 -0700
committerGabe Black <gblack@eecs.umich.edu>2012-04-22 05:20:44 -0700
commit80c6cdae1879e0f6922cc12af5953084154da781 (patch)
tree468b9e1b45bb173b2c332b74047b187c4f409725
parent29329e61b7ca28e14173fb01fdc21396a5507b5d (diff)
downloadgem5-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.hh2
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"