Skip to content

Commit 3797608

Browse files
committed
format match.h
1 parent af8f772 commit 3797608

File tree

1 file changed

+3
-7
lines changed
  • keyvi/include/keyvi/dictionary

1 file changed

+3
-7
lines changed

keyvi/include/keyvi/dictionary/match.h

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* * keyvi - A key value store.
1+
/* keyvi - A key value store.
22
*
33
* Copyright 2015 Hendrik Muhs<hendrik.muhs@gmail.com>
44
*
@@ -234,9 +234,7 @@ struct Match {
234234
*
235235
* @param value
236236
*/
237-
void SetRawValue(const std::string& value) {
238-
raw_value_ = value;
239-
}
237+
void SetRawValue(const std::string& value) { raw_value_ = value; }
240238

241239
private:
242240
size_t start_ = 0;
@@ -254,9 +252,7 @@ struct Match {
254252
template <class MatcherT, class DeletedT>
255253
friend match_t index::internal::FirstFilteredMatch(const MatcherT&, const DeletedT&);
256254

257-
fsa::automata_t& GetFsa() {
258-
return fsa_;
259-
}
255+
fsa::automata_t& GetFsa() { return fsa_; }
260256
};
261257

262258
} /* namespace dictionary */

0 commit comments

Comments
 (0)