summaryrefslogtreecommitdiff
path: root/klm/search/config.hh
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2012-09-13 11:15:32 +0100
committerKenneth Heafield <github@kheafield.com>2012-09-13 11:15:32 +0100
commit816f33174b2c2938a3df9c75b2834da6f5184a3e (patch)
tree2577931ef5ebc3a94c9f75692e8274c1b8eb15f8 /klm/search/config.hh
parentf794c881ccaf4aa0646300dea1e1f6e7a307e019 (diff)
It compiles.
Diffstat (limited to 'klm/search/config.hh')
-rw-r--r--klm/search/config.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/klm/search/config.hh b/klm/search/config.hh
index e21e4b7c..ef8e2354 100644
--- a/klm/search/config.hh
+++ b/klm/search/config.hh
@@ -8,15 +8,15 @@ namespace search {
class Config {
public:
- Config(StringPiece weight_str, unsigned int pop_limit) :
- weights_(weight_str), pop_limit_(pop_limit) {}
+ Config(const Weights &weights, unsigned int pop_limit) :
+ weights_(weights), pop_limit_(pop_limit) {}
const Weights &GetWeights() const { return weights_; }
unsigned int PopLimit() const { return pop_limit_; }
private:
- search::Weights weights_;
+ Weights weights_;
unsigned int pop_limit_;
};