diff options
author | Nathan Binkert <nate@binkert.org> | 2008-10-10 10:15:00 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-10-10 10:15:00 -0700 |
commit | 5586b1539baf6dd9029473a4ec1596a9fc8b7765 (patch) | |
tree | 9c979471aa7c852c6d819431ae53536364008497 /src/base/misc.hh | |
parent | 94b08bed07d13106381a0bb692bf0d879c5353d4 (diff) | |
download | gem5-5586b1539baf6dd9029473a4ec1596a9fc8b7765.tar.xz |
misc: remove #include <cassert> from misc.hh since not everyone needs it.
Diffstat (limited to 'src/base/misc.hh')
-rw-r--r-- | src/base/misc.hh | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/base/misc.hh b/src/base/misc.hh index 6b0025c34..8d38fa731 100644 --- a/src/base/misc.hh +++ b/src/base/misc.hh @@ -29,10 +29,8 @@ * Dave Greene */ -#ifndef __MISC_HH__ -#define __MISC_HH__ - -#include <cassert> +#ifndef __BASE_MISC_HH__ +#define __BASE_MISC_HH__ #include "base/compiler.hh" #include "base/cprintf.hh" @@ -113,4 +111,4 @@ __warn(const char *func, const char *file, int line, const std::string &format, } \ } while (0) -#endif // __MISC_HH__ +#endif // __BASE_MISC_HH__ |