Skip to content

Commit

Permalink
fix to pass cpplint (refs #8)
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Jun 19, 2014
1 parent ef9d7cb commit 9a06222
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions jubatus/core/fv_converter/null_regexp_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#ifndef JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_FILTER_HPP_
#define JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_FILTER_HPP_

#include <string>

#include "string_filter.hpp"
#include "exception.hpp"

Expand Down
2 changes: 2 additions & 0 deletions jubatus/core/fv_converter/null_regexp_match.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
#ifndef JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_MATCH_HPP_
#define JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_MATCH_HPP_

#include <string>

#include "key_matcher.hpp"
#include "exception.hpp"

Expand Down
6 changes: 5 additions & 1 deletion jubatus/core/fv_converter/null_regexp_splitter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
#ifndef JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_SPLITTER_HPP_
#define JUBATUS_CORE_FV_CONVERTER_NULL_REGEXP_SPLITTER_HPP_

#include <utility>
#include <string>
#include <vector>

#include "word_splitter.hpp"
#include "exception.hpp"

Expand All @@ -33,7 +37,7 @@ class regexp_splitter : public word_splitter {

void split(
const std::string& str,
std::vector<std::pair<size_t, size_t> >& bounds) const {};
std::vector<std::pair<size_t, size_t> >& bounds) const {}
};

} // namespace fv_converter
Expand Down

0 comments on commit 9a06222

Please sign in to comment.