Skip to content

Commit

Permalink
fix: increase seq array size to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
priyasiddharth committed Sep 19, 2023
1 parent eb49267 commit 6bba21f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/include/seamock.hh
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ static size_t g_sequence_counter;
namespace seamock {
namespace util {

static std::array<const char *, 5> SeqArray{"UNDEF", "UNDEF", "UNDEF", "UNDEF",
"UNDEF"};
static std::array<const char *, 20> SeqArray{
"UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF",
"UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF",
"UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF", "UNDEF"};

} // namespace util
} // namespace seamock
Expand Down

0 comments on commit 6bba21f

Please sign in to comment.