diff options
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/circlebuf.hh | 8 |
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> ¶m) { @@ -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> ¶m) { @@ -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> ¶m) { @@ -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> ¶m) { |