1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Replace '_N' by '_num'

This commit is contained in:
Tom Lankhorst
2019-02-01 21:54:00 +01:00
parent d660c9d45f
commit 422d5f2ef1

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()