[Groonga-commit] groonga/grnxx at 217b081 [master] Remove argument names to suppress warnings.

Back to archive index

susumu.yata null+****@clear*****
Tue Dec 2 18:14:22 JST 2014


susumu.yata	2014-12-02 18:14:22 +0900 (Tue, 02 Dec 2014)

  New Revision: 217b08188fa186d3a354ef511844d55976b311c5
  https://github.com/groonga/grnxx/commit/217b08188fa186d3a354ef511844d55976b311c5

  Message:
    Remove argument names to suppress warnings.

  Modified files:
    lib/grnxx/impl/index.cpp

  Modified: lib/grnxx/impl/index.cpp (+11 -11)
===================================================================
--- lib/grnxx/impl/index.cpp    2014-12-02 18:13:05 +0900 (144d0d3)
+++ lib/grnxx/impl/index.cpp    2014-12-02 18:14:22 +0900 (5ac090f)
@@ -330,7 +330,7 @@ class TreeIndex<Int> : public Index {
 
 TreeIndex<Int>::TreeIndex(ColumnBase *column,
                           const String &name,
-                          const IndexOptions &options)
+                          const IndexOptions &)
     : Index(column, name),
       map_() {
   auto cursor = column->table()->create_cursor();
@@ -490,7 +490,7 @@ class TreeIndex<Float> : public Index {
 
 TreeIndex<Float>::TreeIndex(ColumnBase *column,
                             const String &name,
-                            const IndexOptions &options)
+                            const IndexOptions &)
     : Index(column, name),
       map_() {
   auto cursor = column->table()->create_cursor();
@@ -655,7 +655,7 @@ class TreeIndex<Text> : public Index {
 
 TreeIndex<Text>::TreeIndex(ColumnBase *column,
                            const String &name,
-                           const IndexOptions &options)
+                           const IndexOptions &)
     : Index(column, name),
       map_() {
   auto cursor = column->table()->create_cursor();
@@ -881,26 +881,26 @@ Int Index::find_one(const Datum &value) const {
 }
 
 std::unique_ptr<Cursor> Index::find(
-    const Datum &value,
-    const CursorOptions &options) const {
+    const Datum &,
+    const CursorOptions &) const {
   throw "Not supported yet";  // TODO
 }
 
 std::unique_ptr<Cursor> Index::find_in_range(
-    const IndexRange &range,
-    const CursorOptions &options) const {
+    const IndexRange &,
+    const CursorOptions &) const {
   throw "Not supported yet";  // TODO
 }
 
 std::unique_ptr<Cursor> Index::find_starts_with(
-    const EndPoint &prefix,
-    const CursorOptions &options) const {
+    const EndPoint &,
+    const CursorOptions &) const {
   throw "Not supported yet";  // TODO
 }
 
 std::unique_ptr<Cursor> Index::find_prefixes(
-    const Datum &value,
-    const CursorOptions &options) const {
+    const Datum &,
+    const CursorOptions &) const {
   throw "Not supported yet";  // TODO
 }
 
-------------- next part --------------
HTML����������������������������...
Télécharger 



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