From a176cdbbc0407711b397196e33b4e67a6a5870f3 Mon Sep 17 00:00:00 2001 From: silverqx Date: Wed, 10 Apr 2024 12:18:10 +0200 Subject: [PATCH] bugfix missing typename --- tom/src/tom/commands/inspirecommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tom/src/tom/commands/inspirecommand.cpp b/tom/src/tom/commands/inspirecommand.cpp index 12b965c16..4c0515b1d 100644 --- a/tom/src/tom/commands/inspirecommand.cpp +++ b/tom/src/tom/commands/inspirecommand.cpp @@ -63,7 +63,7 @@ int InspireCommand::run() // Seed the generator std::default_random_engine generator(rd()); // Define the range - std::uniform_int_distribution // NOLINT(misc-const-correctness) + std::uniform_int_distribution // NOLINT(misc-const-correctness) distribute(0, size - 1); // -1 is ok because it's 0-based comment(inspires.at(distribute(generator)));