Navigation Menu

Skip to content

Commit

Permalink
Add missing "= 0".
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Jun 19, 2014
1 parent 2d5755c commit 8a4da59
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions new-interface/merger.hpp
Expand Up @@ -21,7 +21,7 @@ class Merger {
virtual bool reset(Error *error,
RecordSet *lhs_record_set,
RecordSet *rhs_record_set,
RecordSet *result_record_set);
RecordSet *result_record_set) = 0;

// 合成を進める.
// 成功すれば true を返す.
Expand Down Expand Up @@ -64,7 +64,7 @@ class Merger {
virtual bool merge(Error *error,
RecordSet *lhs_record_set,
RecordSet *rhs_record_set,
RecordSet *result_record_set,
RecordSet *result_record_set) = 0;
};

} // namespace grnxx
Expand Down
2 changes: 1 addition & 1 deletion new-interface/pipeline.hpp
Expand Up @@ -20,7 +20,7 @@ class Pipeline {
// - 演算において例外が発生する.
// - リソースを確保できない.
virtual bool flush(Error *error,
RecordSet *record_set);
RecordSet *record_set) = 0;
};

} // namespace grnxx
Expand Down

0 comments on commit 8a4da59

Please sign in to comment.