From 283e64ad7002cc0eddeaaff1cf82859958813a14 Mon Sep 17 00:00:00 2001 From: Gregory Bednov Date: Fri, 10 Jan 2025 21:20:34 +0300 Subject: [PATCH] Update dice.cpp --- dice.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dice.cpp b/dice.cpp index ecf63e4..7e307b1 100644 --- a/dice.cpp +++ b/dice.cpp @@ -42,9 +42,3 @@ int main(void) { cout << fortune_from(rand()%91, h, m); return 0; } - -template -T minimum(const T& lhs, const T& rhs) -{ - return lhs < rhs ? lhs : rhs; -}