[Groonga-commit] groonga/groonga at 2550ee0 [master] Use uint32_t for grn_id

アーカイブの一覧に戻る
Kouhei Sutou null+****@clear*****
Fri Feb 15 09:57:35 JST 2019


Kouhei Sutou	2019-02-15 09:57:35 +0900 (Fri, 15 Feb 2019)

  Revision: 2550ee00bdfcca73d193df9a926d4168adb61ceb
  https://github.com/groonga/groonga/commit/2550ee00bdfcca73d193df9a926d4168adb61ceb

  Message:
    Use uint32_t for grn_id
    
    Normally, "unsigned int" is unsigned 32bit integer. uint32_t specifies
    size explicitly.

  Modified files:
    include/groonga/groonga.h

  Modified: include/groonga/groonga.h (+1 -1)
===================================================================
--- include/groonga/groonga.h    2019-02-15 09:35:56 +0900 (d7e724343)
+++ include/groonga/groonga.h    2019-02-15 09:57:35 +0900 (b0ea3be6a)
@@ -36,7 +36,7 @@ extern "C" {
 # endif /* defined(_WIN32) || defined(_WIN64) */
 #endif /* GRN_API */
 
-typedef unsigned int grn_id;
+typedef uint32_t grn_id;
 typedef uint8_t grn_bool;
 
 #define GRN_ID_NIL                     (0x00)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20190215/1b7a2c38/attachment-0001.html>


More information about the Groonga-commit mailing list
アーカイブの一覧に戻る