Skip to content

Commit

Permalink
Merge pull request #1717 from ax3l/fix-storageClassFirst
Browse files Browse the repository at this point in the history
static constexpr: storage class first
  • Loading branch information
horenmar authored Aug 7, 2019
2 parents fa096b2 + 820b1f1 commit 7a6af7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/internal/catch_fatal_condition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ namespace Catch {

// 32kb for the alternate stack seems to be sufficient. However, this value
// is experimentally determined, so that's not guaranteed.
constexpr static std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;
static constexpr std::size_t sigStackSize = 32768 >= MINSIGSTKSZ ? 32768 : MINSIGSTKSZ;

static SignalDefs signalDefs[] = {
{ SIGINT, "SIGINT - Terminal interrupt signal" },
Expand Down

0 comments on commit 7a6af7b

Please sign in to comment.