diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-08-13 06:57:30 -0400 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2014-08-13 06:57:30 -0400 |
commit | 8b8d991df053dad34cd490db6c8e7c94b5413290 (patch) | |
tree | 1cd5393611977cc78a3c8c652db0eefe77d44b2c /src/dev/mips | |
parent | 8d04e32a834c28cea19d748bfe68d1aa0f593898 (diff) | |
download | gem5-8b8d991df053dad34cd490db6c8e7c94b5413290.tar.xz |
mips: Remove unused private members to fix compile-time warning
Certain versions of clang complain about unused private members if
they are not used. This changeset removes such members from the
MIPS-specific classes to silence the warning.
Diffstat (limited to 'src/dev/mips')
-rwxr-xr-x | src/dev/mips/malta_io.hh | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/dev/mips/malta_io.hh b/src/dev/mips/malta_io.hh index 9f49f20cc..f74d42da4 100755 --- a/src/dev/mips/malta_io.hh +++ b/src/dev/mips/malta_io.hh @@ -51,9 +51,6 @@ */ class MaltaIO : public BasicPioDevice { - private: - struct tm tm; - protected: class RTC : public MC146818 |