summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-06 19:01:39 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-10-06 19:01:39 -0500
commit7bcadd4ac91d4694700d9d173233a2b234d1799d (patch)
tree1ba884a98e3ef0722ee408a5eb80aa8e6cc046bc /util
parentfb60761c469f3b144e741cef14762a5b6a037112 (diff)
downloadhorizon-7bcadd4ac91d4694700d9d173233a2b234d1799d.tar.gz
horizon-7bcadd4ac91d4694700d9d173233a2b234d1799d.tar.bz2
horizon-7bcadd4ac91d4694700d9d173233a2b234d1799d.tar.xz
horizon-7bcadd4ac91d4694700d9d173233a2b234d1799d.zip
util: Document reset_if_pretty
Diffstat (limited to 'util')
-rw-r--r--util/output.hh4
1 files changed, 4 insertions, 0 deletions
diff --git a/util/output.hh b/util/output.hh
index f4f939f..fa81127 100644
--- a/util/output.hh
+++ b/util/output.hh
@@ -34,6 +34,10 @@ inline void colour_if_pretty(bool pretty, std::ostream &stream,
if(pretty) stream << "\033[" + what + ";1m";
}
+/*! Reset all formatting on +stream+ if +pretty+.
+ * @param pretty Whether to act.
+ * @param stream The stream on which to reset formatting.
+ */
inline void reset_if_pretty(bool pretty, std::ostream &stream) {
if(pretty) stream << "\033[0m";
}