static constexpr: storage class first

Seen with PGI compiler for `static constexpr`:
```
warning: storage class is not first
```
This commit is contained in:
Axel Huebl 2019-08-06 19:17:16 -05:00
parent 6070745cab
commit 820b1f12bf
No known key found for this signature in database
GPG Key ID: 472D2C364E21D94B
1 changed files with 1 additions and 1 deletions

View File

@ -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" },