Skip to content

Commit

Permalink
renumber cases
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldreik committed Jun 9, 2019
1 parent a667365 commit daa8ea9
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions test/fuzzing/named_arg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,41 +63,41 @@ template <typename Callback> void invoke(int index, Callback callback) {
case 1:
callback(char{});
break;
case 11:
case 2:
using sc = signed char;
callback(sc{});
break;
case 21:
case 3:
using uc = unsigned char;
callback(uc{});
break;
case 2:
case 4:
callback(short{});
break;
case 22:
case 5:
using us = unsigned short;
callback(us{});
break;
case 3:
case 6:
callback(int{});
break;
case 13:
case 7:
callback(unsigned{});
break;
case 4:
case 8:
callback(long{});
break;
case 14:
case 9:
using ul = unsigned long;
callback(ul{});
break;
case 5:
case 10:
callback(float{});
break;
case 6:
case 11:
callback(double{});
break;
case 7:
case 12:
using LD = long double;
callback(LD{});
break;
Expand Down

0 comments on commit daa8ea9

Please sign in to comment.