[Groonga-commit] groonga/grnxx at 33ed487 [master] Use int64_t instead of Int64.

Back to archive index

susumu.yata null+****@clear*****
Wed May 28 15:51:21 JST 2014


susumu.yata	2014-05-28 15:51:21 +0900 (Wed, 28 May 2014)

  New Revision: 33ed4878e384febc84051c332ebbee2a6c70501a
  https://github.com/groonga/grnxx/commit/33ed4878e384febc84051c332ebbee2a6c70501a

  Message:
    Use int64_t instead of Int64.

  Modified files:
    new-interface/expression.hpp

  Modified: new-interface/expression.hpp (+3 -3)
===================================================================
--- new-interface/expression.hpp    2014-05-27 16:24:57 +0900 (65813b1)
+++ new-interface/expression.hpp    2014-05-28 15:51:21 +0900 (b19c0be)
@@ -46,7 +46,7 @@ class Expression {
   //  - 演算子が求める引数の型・数と実際の引数の型・数が異なる.
   // - リソースを確保できない.
   virtual ExpressionNode *create_operator_node(OperatorType operator_type,
-                                               Int64 num_args,
+                                               int64_t num_args,
                                                ExpressionNode **args,
                                                Error *error) = 0;
 
@@ -66,7 +66,7 @@ class Expression {
   //  - ゼロによる除算が発生する.
   //  - NaN が発生する.
   //   - TODO: これらの取り扱いについては検討の余地がある.
-  virtual int64_t filter(Int64 num_row_ids,
+  virtual int64_t filter(int64_t num_row_ids,
                          RowID *row_ids,
                          Error *error) = 0;
 
@@ -88,7 +88,7 @@ class Expression {
   //  - ゼロによる除算が発生する.
   //  - NaN が発生する.
   //   - TODO: これらの取り扱いについては検討の余地がある.
-  virtual bool evaluate(Int64 num_row_ids,
+  virtual bool evaluate(int64_t num_row_ids,
                         const RowID *row_ids,
                         Datum *values,
                         Error *error) = 0;
-------------- next part --------------
HTML����������������������������...
Download 



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