Replace '_N' by '_num'

This commit is contained in:
Tom Lankhorst 2019-02-01 21:54:00 +01:00
parent d660c9d45f
commit 422d5f2ef1
No known key found for this signature in database
GPG Key ID: 52BF82B885592251
1 changed files with 2 additions and 2 deletions

View File

@ -27,12 +27,12 @@ namespace Random
/**
* FixedSeedSequence adheres to the _Named Requirement_ `SeedSequence`.
*/
template<size_t _N = 0> class FixedSeedSequence
template<size_t _num = 0> class FixedSeedSequence
{
public:
using result_type = uint32_t;
static constexpr size_t N = _N;
static constexpr size_t N = _num;
static constexpr result_type default_seed = 0x1234567F;
explicit FixedSeedSequence()