[Groonga-commit] groonga/grnxx at fe8556f [master] Fix wrong access modifiers (from protected to private).

Back to archive index

susumu.yata null+****@clear*****
Tue Dec 16 10:45:13 JST 2014


susumu.yata	2014-11-25 11:03:38 +0900 (Tue, 25 Nov 2014)

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

  Message:
    Fix wrong access modifiers (from protected to private).

  Modified files:
    lib/grnxx/impl/column/scalar/bool.hpp
    lib/grnxx/impl/column/scalar/float.hpp
    lib/grnxx/impl/column/scalar/geo_point.hpp

  Modified: lib/grnxx/impl/column/scalar/bool.hpp (+1 -1)
===================================================================
--- lib/grnxx/impl/column/scalar/bool.hpp    2014-11-25 11:01:27 +0900 (3dbf710)
+++ lib/grnxx/impl/column/scalar/bool.hpp    2014-11-25 11:03:38 +0900 (8568bb1)
@@ -45,7 +45,7 @@ class Column<Bool> : public ColumnBase {
   // On failure, throws an exception.
   void read(ArrayCRef<Record> records, ArrayRef<Bool> values) const;
 
- protected:
+ private:
   Array<Bool> values_;
 
   // Return the active column size.

  Modified: lib/grnxx/impl/column/scalar/float.hpp (+1 -1)
===================================================================
--- lib/grnxx/impl/column/scalar/float.hpp    2014-11-25 11:01:27 +0900 (d0e699b)
+++ lib/grnxx/impl/column/scalar/float.hpp    2014-11-25 11:03:38 +0900 (b83411f)
@@ -45,7 +45,7 @@ class Column<Float> : public ColumnBase {
   // On failure, throws an exception.
   void read(ArrayCRef<Record> records, ArrayRef<Float> values) const;
 
- protected:
+ private:
   Array<Float> values_;
 
   // Return the active column size.

  Modified: lib/grnxx/impl/column/scalar/geo_point.hpp (+1 -1)
===================================================================
--- lib/grnxx/impl/column/scalar/geo_point.hpp    2014-11-25 11:01:27 +0900 (d0ed806)
+++ lib/grnxx/impl/column/scalar/geo_point.hpp    2014-11-25 11:03:38 +0900 (de7fde7)
@@ -45,7 +45,7 @@ class Column<GeoPoint> : public ColumnBase {
   // On failure, throws an exception.
   void read(ArrayCRef<Record> records, ArrayRef<GeoPoint> values) const;
 
- protected:
+ private:
   Array<GeoPoint> values_;
 
   // Return the active column size.
-------------- next part --------------
HTML����������������������������...
Descargar 



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