From 3f3d579c6a6f9a1a31278221f85b3194e3b6c5f4 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Mon, 5 Dec 2022 19:41:56 +0100 Subject: Use whole alphabet and numbers to generate page id --- whiteboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'whiteboard.cpp') diff --git a/whiteboard.cpp b/whiteboard.cpp index 8df6d73..dd5f1a8 100644 --- a/whiteboard.cpp +++ b/whiteboard.cpp @@ -45,7 +45,7 @@ namespace { { static std::random_device r; static std::default_random_engine e1(r()); - static std::uniform_int_distribution uniform_dist(0, 15); + static std::uniform_int_distribution uniform_dist(0, 35); // limit tries for (int j = 0; j < 100000; j++) { -- cgit v1.2.3