[Groonga-commit] groonga/grnxx at c89dab5 [master] Fix typos (protected -> private).

Back to archive index

susumu.yata null+****@clear*****
Fri Sep 19 10:16:02 JST 2014


susumu.yata	2014-09-19 10:16:02 +0900 (Fri, 19 Sep 2014)

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

  Message:
    Fix typos (protected -> private).

  Modified files:
    lib/grnxx/column_impl.hpp

  Modified: lib/grnxx/column_impl.hpp (+7 -7)
===================================================================
--- lib/grnxx/column_impl.hpp    2014-09-19 09:35:15 +0900 (0b1efb4)
+++ lib/grnxx/column_impl.hpp    2014-09-19 10:16:02 +0900 (8d52e3e)
@@ -37,7 +37,7 @@ class ColumnImpl : public Column {
     return values_[row_id];
   }
 
- protected:
+ private:
   Array<T> values_;
 
   ColumnImpl();
@@ -75,7 +75,7 @@ class ColumnImpl<Int> : public Column {
     return values_[row_id];
   }
 
- protected:
+ private:
   Array<Int> values_;
 
   ColumnImpl();
@@ -124,7 +124,7 @@ class ColumnImpl<Text> : public Column {
     }
   }
 
- protected:
+ private:
   Array<UInt> headers_;
   Array<char> bodies_;
 
@@ -174,7 +174,7 @@ class ColumnImpl<Vector<Int>> : public Column {
     }
   }
 
- protected:
+ private:
   Array<UInt> headers_;
   Array<Int> bodies_;
 
@@ -224,7 +224,7 @@ class ColumnImpl<Vector<Float>> : public Column {
     }
   }
 
- protected:
+ private:
   Array<UInt> headers_;
   Array<Float> bodies_;
 
@@ -274,7 +274,7 @@ class ColumnImpl<Vector<GeoPoint>> : public Column {
     }
   }
 
- protected:
+ private:
   Array<UInt> headers_;
   Array<GeoPoint> bodies_;
 
@@ -315,7 +315,7 @@ class ColumnImpl<Vector<Text>> : public Column {
                         bodies_.data(), headers_[row_id].size);
   }
 
- protected:
+ private:
   struct Header {
     Int offset;
     Int size;
-------------- next part --------------
HTML����������������������������...
Download 



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