From a039c8ad36779903571419cb06cd052f8fc41512 Mon Sep 17 00:00:00 2001 From: HampusM Date: Tue, 29 Mar 2022 17:40:04 +0200 Subject: refactor: use trailing return types --- src/randomization/seed_generator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/randomization/seed_generator.cpp') diff --git a/src/randomization/seed_generator.cpp b/src/randomization/seed_generator.cpp index 3afa275..5aedf17 100644 --- a/src/randomization/seed_generator.cpp +++ b/src/randomization/seed_generator.cpp @@ -6,7 +6,7 @@ SeedGenerator::SeedGenerator( { } -uint32_t SeedGenerator::random_seed() const noexcept +auto SeedGenerator::random_seed() const noexcept -> uint32_t { return (*_random_device)(); } -- cgit v1.2.3-18-g5258