Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
heinsaar committed Oct 19, 2023
1 parent 7b0aa18 commit 401c870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zen/functions/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ T random_int(const T min = 0, const T max = 10) {
// zen::generate_random(v);
// Result: A vector of size 10 with random integers between [min, max)
template<class Iterable>
void generate_random(Iterable& c, int size = 10) // TODO: Generalize & test with all containers before Kaizen 1.0.0 release
void generate_random(Iterable& c, int size = 10) // TODO: Maybe generalize this to make it work with all containers
{
ZEN_STATIC_ASSERT(zen::is_iterable_v< Iterable>, "TEMPLATE PARAMETER EXPECTED TO BE Iterable, BUT IS NOT");
ZEN_STATIC_ASSERT(zen::is_resizable_v<Iterable>, "TEMPLATE PARAMETER EXPECTED TO BE RESIZABLE, BUT IS NOT");
Expand Down

0 comments on commit 401c870

Please sign in to comment.