1. 22 Jan, 2019 12 commits
  2. 25 Dec, 2018 2 commits
  3. 06 Nov, 2018 2 commits
  4. 30 Sep, 2018 1 commit
  5. 24 Sep, 2018 1 commit
  6. 12 Sep, 2018 4 commits
  7. 14 Aug, 2018 1 commit
  8. 05 Jun, 2018 1 commit
  9. 23 May, 2018 2 commits
  10. 01 May, 2018 2 commits
  11. 25 Apr, 2018 3 commits
  12. 16 Apr, 2018 2 commits
  13. 13 Apr, 2018 1 commit
  14. 12 Apr, 2018 3 commits
  15. 21 Mar, 2018 3 commits
    • Mouse's avatar
      3b87c363
    • Vasil Velichkov's avatar
      Fix misleading-indentation error · 18971e7c
      Vasil Velichkov authored
      asn1c_save.c:238:5: error: this ‘for’ clause does not guard... [-Werror=misleading-indentation]
           for(int i = 0; i < argc; i++)
           ^~~
      asn1c_save.c:240:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’
        safe_fprintf(mkf, "\n\n");
        ^~~~~~~~~~~~
      18971e7c
    • Vasil Velichkov's avatar
      Fix sign-compare error · 490da82c
      Vasil Velichkov authored
      ../skeletons/INTEGER.c:510:60: error: comparison between signed and unsigned integer expressions [-Werror=sign-compare]
                   if(specs && specs->field_unsigned && dec_value <= ULONG_MAX) {
      490da82c