[Groonga-commit] groonga/grnxx at c4d8cd4 [master] Suppress warnings for unused arguments in sorter.cpp.

Back to archive index

susumu.yata null+****@clear*****
Wed Sep 10 11:50:31 JST 2014


susumu.yata	2014-09-10 11:50:31 +0900 (Wed, 10 Sep 2014)

  New Revision: c4d8cd4b6c8d93665dae1c447b10da2b48fb380f
  https://github.com/groonga/grnxx/commit/c4d8cd4b6c8d93665dae1c447b10da2b48fb380f

  Message:
    Suppress warnings for unused arguments in sorter.cpp.

  Modified files:
    lib/grnxx/sorter.cpp

  Modified: lib/grnxx/sorter.cpp (+2 -2)
===================================================================
--- lib/grnxx/sorter.cpp    2014-09-10 11:50:09 +0900 (39c1af4)
+++ lib/grnxx/sorter.cpp    2014-09-10 11:50:31 +0900 (a7f698d)
@@ -571,12 +571,12 @@ unique_ptr<Sorter> Sorter::create(
   return sorter;
 }
 
-bool Sorter::reset(Error *error, Array<Record> *records) {
+bool Sorter::reset(Error *, Array<Record> *records) {
   records_ = records;
   return true;
 }
 
-bool Sorter::progress(Error *error) {
+bool Sorter::progress(Error *) {
   // TODO: Incremental sorting is not supported yet.
   return true;
 }
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index