summaryrefslogtreecommitdiff
path: root/src/base/circlebuf.hh
diff options
context:
space:
mode:
authorAndreas Sandberg <andreas.sandberg@arm.com>2017-05-18 15:11:23 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2017-05-19 08:00:45 +0000
commitc4b85d5f9854abeee6d1dbe15ae65a7a1aada6b2 (patch)
tree521b54e172ab547cd2147502bdb0015be924bb73 /src/base/circlebuf.hh
parent41ab3e6e7e9b5a5f4427949f9a981cdf2186c88a (diff)
downloadgem5-c4b85d5f9854abeee6d1dbe15ae65a7a1aada6b2.tar.xz
base, sim, arch: Fix clang 5.0 warnings
Compiling gem5 with recent version of clang (4 and 5) triggers warnings that are treated as errors: * Global templatized static functions result in a warning if they are not used. These should either be declared as static inline or without the static identifier to avoid the warning. * Some templatized classes contain static variables. The instantiated versions of these variables / templates need to be explicitly declared to avoid a compiler warning. Change-Id: Ie8261144836e94ebab7ea04ccccb90927672c257 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-by: Curtis Dunham <curtis.dunham@arm.com> Reviewed-on: https://gem5-review.googlesource.com/3420 Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/base/circlebuf.hh')
-rw-r--r--src/base/circlebuf.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/base/circlebuf.hh b/src/base/circlebuf.hh
index 2ab14e269..bf6f9e263 100644
--- a/src/base/circlebuf.hh
+++ b/src/base/circlebuf.hh
@@ -247,7 +247,7 @@ class Fifo
template <typename T>
-static void
+void
arrayParamOut(CheckpointOut &cp, const std::string &name,
const CircleBuf<T> &param)
{
@@ -257,7 +257,7 @@ arrayParamOut(CheckpointOut &cp, const std::string &name,
}
template <typename T>
-static void
+void
arrayParamIn(CheckpointIn &cp, const std::string &name,
CircleBuf<T> &param)
{
@@ -269,7 +269,7 @@ arrayParamIn(CheckpointIn &cp, const std::string &name,
}
template <typename T>
-static void
+void
arrayParamOut(CheckpointOut &cp, const std::string &name,
const Fifo<T> &param)
{
@@ -279,7 +279,7 @@ arrayParamOut(CheckpointOut &cp, const std::string &name,
}
template <typename T>
-static void
+void
arrayParamIn(CheckpointIn &cp, const std::string &name,
Fifo<T> &param)
{