An error occurred fetching the project authors.
  1. 25 Apr, 2017 1 commit
  2. 03 Apr, 2017 1 commit
  3. 10 Feb, 2017 2 commits
  4. 23 Jan, 2017 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Changed the behavior of mrb_range_beg_len(); close #3411 · 5e1d9233
      Yukihiro "Matz" Matsumoto authored
      The new API is:
      
      int mrb_range_beg_len(mrb, range, &beg, &len, len, trunc)
      
      The new argument `trunc` is a boolean value that specifies
      whether the function truncates the range. The new return value
      is an integer instead of a boolean, that is:
      
       0: not a range
       1: range with proper edges
       2: out of range
      
      To get the old behavior, you have to rewrite:
      
        mrb_range_beg_len(mrb, range, &beg, &len, len)
      
      to:
      
        mrn_range_beg_len(mrb, range, &beg, &len, len, TRUE) == 1
      
      [Breaking Change]
      5e1d9233
  5. 04 Jan, 2017 1 commit
  6. 28 Dec, 2016 1 commit
  7. 24 Nov, 2016 1 commit
  8. 15 Nov, 2016 1 commit
  9. 17 Aug, 2016 1 commit
  10. 27 Nov, 2015 1 commit
  11. 21 Oct, 2015 1 commit
  12. 20 Oct, 2015 1 commit
  13. 23 Sep, 2015 1 commit
  14. 05 Aug, 2015 1 commit
  15. 28 May, 2015 1 commit
  16. 18 Apr, 2015 1 commit
    • Kouhei Sutou's avatar
      Suppress warnings generated by -Wwrite-strings · 09419874
      Kouhei Sutou authored
      Here are suppressed warnings:
      
          src/fmt_fp.c: In function 'fmt_fp':
          src/fmt_fp.c:124:16: warning: initialization discards 'const' qualifier from pointer target type
               char *ss = (t&32)?"inf":"INF";
                          ^
          src/fmt_fp.c:125:17: warning: assignment discards 'const' qualifier from pointer target type
               if (y!=y) ss=(t&32)?"nan":"NAN";
                           ^
          mrbgems/mruby-string-ext/src/string.c: In function 'mrb_str_succ_bang':
          mrbgems/mruby-string-ext/src/string.c:302:27: warning: assignment discards 'const' qualifier from pointer target type
                 if (e == b) prepend = "1";
                                     ^
          mrbgems/mruby-string-ext/src/string.c:305:27: warning: assignment discards 'const' qualifier from pointer target type
                 if (e == b) prepend = "a";
                                     ^
          mrbgems/mruby-string-ext/src/string.c:308:27: warning: assignment discards 'const' qualifier from pointer target type
                 if (e == b) prepend = "A";
                                     ^
          mrbgems/mruby-bin-mruby/tools/mruby/mruby.c: In function 'main':
          mrbgems/mruby-bin-mruby/tools/mruby/mruby.c:213:13: warning: assignment discards 'const' qualifier from pointer target type
               cmdline = args.cmdline ? args.cmdline : "-";
                       ^
          mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c: In function 'print_breakpoint':
          mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type
             char* enable_letter[] = {BREAK_INFO_MSG_DISABLE, BREAK_INFO_MSG_ENABLE};
             ^
          mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type
      09419874
  17. 16 Dec, 2014 2 commits
  18. 21 Aug, 2014 1 commit
  19. 11 Aug, 2014 3 commits
  20. 08 Aug, 2014 1 commit
  21. 11 Jun, 2014 1 commit
  22. 10 Jun, 2014 1 commit
  23. 07 Jun, 2014 1 commit
  24. 04 Jun, 2014 2 commits
  25. 03 Jun, 2014 1 commit
  26. 25 Apr, 2014 1 commit
  27. 13 Apr, 2014 1 commit
  28. 27 Mar, 2014 2 commits
  29. 06 Mar, 2014 2 commits
  30. 07 Jan, 2014 1 commit
    • cremno's avatar
      remove superfluous includes · aa655b9e
      cremno authored
      - reduce compile time by a little bit (full-core: ~0.7s for me)
      - thanks to 'include-what-you-use' for some help
      - include Standard C header files before any other (coding style)
      aa655b9e
  31. 23 Aug, 2013 3 commits