summaryrefslogtreecommitdiff
path: root/wait.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
committerJeffrey Walton <noloader@gmail.com>2017-11-29 10:54:33 -0500
commit61ec50dabe14c5d4582ac187706ea27645b3562b (patch)
tree18a2eebb7adc8c9556ce132d7081a105fa058d6b /wait.h
parent16ebfa72bf130c4725e652e4d3688d97d3feb0ee (diff)
downloadcryptopp-git-61ec50dabe14c5d4582ac187706ea27645b3562b.tar.gz
Change Doxygen comment style from //! to ///
Also see https://groups.google.com/forum/#!topic/cryptopp-users/A7-Xt5Knlzw
Diffstat (limited to 'wait.h')
-rw-r--r--wait.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/wait.h b/wait.h
index c1cbddd5..0bd51049 100644
--- a/wait.h
+++ b/wait.h
@@ -48,7 +48,7 @@ public:
virtual ~Tracer() {}
protected:
- //! Override this in your most-derived tracer to do the actual tracing.
+ /// Override this in your most-derived tracer to do the actual tracing.
virtual void Trace(unsigned int n, std::string const& s) = 0;
/*! By default, tracers will decide which trace messages to trace according to a trace level
@@ -165,11 +165,11 @@ CRYPTOPP_END_TRACER_CLASS
struct WaitingThreadData;
-//! container of wait objects
+/// container of wait objects
class WaitObjectContainer : public NotCopyable
{
public:
- //! exception thrown by WaitObjectContainer
+ /// exception thrown by WaitObjectContainer
class Err : public Exception
{
public: