summaryrefslogtreecommitdiff
path: root/decoder/trule.h
diff options
context:
space:
mode:
Diffstat (limited to 'decoder/trule.h')
-rw-r--r--decoder/trule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/trule.h b/decoder/trule.h
index 85842bb5..7af46747 100644
--- a/decoder/trule.h
+++ b/decoder/trule.h
@@ -167,7 +167,7 @@ class TRule {
friend class boost::serialization::access;
template<class Archive>
- void save(Archive & ar, const unsigned int version) const {
+ void save(Archive & ar, const unsigned int /*version*/) const {
ar & TD::Convert(-lhs_);
unsigned f_size = f_.size();
ar & f_size;
@@ -195,7 +195,7 @@ class TRule {
ar & scores_;
}
template<class Archive>
- void load(Archive & ar, const unsigned int version) {
+ void load(Archive & ar, const unsigned int /*version*/) {
std::string lhs; ar & lhs; lhs_ = -TD::Convert(lhs);
unsigned f_size; ar & f_size;
f_.resize(f_size);