Use nested namespaces definition syntax

This commit is contained in:
Vladimir Golovnev (Glassez)
2021-01-03 16:53:24 +03:00
parent 04a9ce6e81
commit 552ff0489d
10 changed files with 196 additions and 226 deletions

View File

@@ -31,10 +31,7 @@
#include <cstdint>
#include <limits>
namespace Utils
namespace Utils::Random
{
namespace Random
{
uint32_t rand(uint32_t min = 0, uint32_t max = std::numeric_limits<uint32_t>::max());
}
uint32_t rand(uint32_t min = 0, uint32_t max = std::numeric_limits<uint32_t>::max());
}