diff options
author | Erik Hallnor <ehallnor@umich.edu> | 2004-02-08 17:26:27 -0500 |
---|---|---|
committer | Erik Hallnor <ehallnor@umich.edu> | 2004-02-08 17:26:27 -0500 |
commit | 9c7bec74b1deb9fd78d17818e0bc14620d2b4314 (patch) | |
tree | 5c9dd2e89273a7af855c515dbd7c27bd3933b467 /base/compression | |
parent | bdfb5de4b2a8d01143d09a1bc4ead1e8d74dbcd3 (diff) | |
download | gem5-9c7bec74b1deb9fd78d17818e0bc14620d2b4314.tar.xz |
Separate template definitions and instantiations into *_impl.hh and *.cc. Eventually the *.cc fils should be generate by our super-duper python script.
base/compression/null_compression.hh:
Need some includes.
--HG--
extra : convert_revision : caf52320f6f6ff255e8a93817419ad13ad44224f
Diffstat (limited to 'base/compression')
-rw-r--r-- | base/compression/null_compression.hh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/compression/null_compression.hh b/base/compression/null_compression.hh index d2bc76eef..6a630b113 100644 --- a/base/compression/null_compression.hh +++ b/base/compression/null_compression.hh @@ -34,6 +34,10 @@ * This file defines a doNothing compression algorithm. */ +#include <inttypes.h> // for uint8_t +#include "base/misc.hh" // for fatal() + + /** * A dummy compression class to use when no data compression is desired. */ |