[Groonga-commit] groonga/groonga at 8965564 [master] Fix wrong ifdef block

アーカイブの一覧に戻る
Kouhei Sutou null+****@clear*****
Tue Nov 27 13:47:17 JST 2018


Kouhei Sutou	2018-11-27 13:47:17 +0900 (Tue, 27 Nov 2018)

  Revision: 89655643464b16667d7d1e689b1fa62272a304b7
  https://github.com/groonga/groonga/commit/89655643464b16667d7d1e689b1fa62272a304b7

  Message:
    Fix wrong ifdef block

  Modified files:
    lib/operator.c

  Modified: lib/operator.c (+1 -2)
===================================================================
--- lib/operator.c    2018-11-27 13:20:58 +0900 (ac2c14496)
+++ lib/operator.c    2018-11-27 13:47:17 +0900 (65fec498c)
@@ -926,7 +926,7 @@ string_have_sub_text(grn_ctx *ctx,
     onig_free(regex);
     return matched;
   }
-#else /* GRN_SUPPORT_REGEXP */
+#endif /* GRN_SUPPORT_REGEXP */
   {
     const char *text_current = text;
     const char *text_end = text + text_len;
@@ -973,7 +973,6 @@ string_have_sub_text(grn_ctx *ctx,
 
     return GRN_FALSE;
   }
-#endif /* GRN_SUPPORT_REGEXP */
 }
 
 static grn_bool
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-commit/attachments/20181127/39f55a21/attachment.html>


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