summaryrefslogtreecommitdiff
path: root/include/lldb/Utility/Stream.h
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2019-08-20 22:20:46 +0000
committerJonas Devlieghere <jonas@devlieghere.com>2019-08-20 22:20:46 +0000
commite260bb13c73d1b2175dc6c053576d3b82eeb71ba (patch)
tree2e1280fad3ad473b0258b67d9562d94d61efdf69 /include/lldb/Utility/Stream.h
parentee5bd3c02251e0acdc03da0c4909aecff4ebfad9 (diff)
[NFC] Fix -Wdocumentation warnings in Utility.
This patch fixes a bunch of -Wdocumentation warnings in Utility. I'm sure there are still a bunch outdated comments left, but this fixes the most flagrant inconsistencies that the compiler understands. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@369461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/lldb/Utility/Stream.h')
-rw-r--r--include/lldb/Utility/Stream.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/lldb/Utility/Stream.h b/include/lldb/Utility/Stream.h
index b24d4e457..414f92177 100644
--- a/include/lldb/Utility/Stream.h
+++ b/include/lldb/Utility/Stream.h
@@ -35,11 +35,11 @@ public:
/// Utility class for counting the bytes that were written to a stream in a
/// certain time span.
+ ///
/// \example
/// ByteDelta delta(*this);
/// WriteDataToStream("foo");
/// return *delta;
- /// \endcode
class ByteDelta {
Stream *m_stream;
/// Bytes we have written so far when ByteDelta was created.