Navigation Menu

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: groonga/groonga
base: e68275e8fcce
Choose a base ref
...
head repository: groonga/groonga
compare: 7644b0150d2a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jun 11, 2013

  1. clang: suppress a warning

    Add a missing cast.
    
        lib/token.c:165:46: warning: passing
              'const unsigned char *' to parameter of type 'const char *' converts
              between pointers to integer types with different sign [-Wpointer-sign]
                                                     tokenizer->next,
                                                     ^~~~~~~~~~~~~~~
        include/groonga/tokenizer.h:195:82: note:
              passing argument to parameter 'str_ptr' here
          ...const char *str_ptr,
                         ^
    kou committed Jun 11, 2013
    Copy the full SHA
    4aac7ef View commit details
    Browse the repository at this point in the history
  2. clang: suppress warnings

    Add missing casts.
    
        lib/token.c:162:21: warning: assigning to
              'const unsigned char *' from 'const char *' converts between pointers to
              integer types with different sign [-Wpointer-sign]
            tokenizer->next =
                            ^
        lib/token.c:190:56: warning: passing
              'const unsigned char *' to parameter of type 'const char *' converts
              between pointers to integer types with different sign [-Wpointer-sign]
            grn_tokenizer_token_push(ctx, &(tokenizer->token), p, r - p, status);
                                                               ^
        include/groonga/tokenizer.h:183:61: note:
              passing argument to parameter 'str_ptr' here
          ...const char *str_ptr, unsigned int str_length,
                         ^
    kou committed Jun 11, 2013
    Copy the full SHA
    7644b01 View commit details
    Browse the repository at this point in the history