summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfgang Draxinger <dw@optores.de>2019-07-19 15:29:22 +0200
committerWolfgang Draxinger <dw@optores.de>2019-07-19 15:29:22 +0200
commitc98c022974ee1af18bcd5394efb73e760d80bc65 (patch)
tree4164bb005be60ca7e9d644ef29086db79e860a23
parent776b1592e3d67f7a1af94180a0b4c3fcf5320f96 (diff)
downloaddwu-c98c022974ee1af18bcd5394efb73e760d80bc65.tar.gz
dwu-c98c022974ee1af18bcd5394efb73e760d80bc65.tar.bz2
fixed a misformulation in operators implementation notes comment
-rw-r--r--include/dwu/operators2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dwu/operators b/include/dwu/operators
index fde9118..24dcd96 100644
--- a/include/dwu/operators
+++ b/include/dwu/operators
@@ -34,7 +34,7 @@ written out min-comparison, like this:
auto const lsz = l.size(); auto const rsz = r.size();
Cl<T,A> v( (lsz < rsz) ? lsz : rsz );
-This is used instead of <algorithm> container for two reasons:
+This is used instead of std::min defined <algorithm> for two reasons:
1. It avoids inclusion of a header. Although <algorithm> is rather
lightweight, the extra compile time is measureable.