From be5a3261f5783bf297c912610b0421c36f14d79b Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Fri, 29 Mar 2024 14:44:15 -0400 Subject: [PATCH] minor comment --- include/xo/randomgen/random_seed.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/xo/randomgen/random_seed.hpp b/include/xo/randomgen/random_seed.hpp index 92447b3c..d68fc10c 100644 --- a/include/xo/randomgen/random_seed.hpp +++ b/include/xo/randomgen/random_seed.hpp @@ -76,6 +76,7 @@ namespace xo { operator<<(std::ostream & os, Seed const & x) { + /* NOTE: if compile error here, may want caller to #include [indentlog/print/vector.hpp] */ os << x.seed_; return os; } /*operator<<*/