summaryrefslogtreecommitdiff
path: root/zlib.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 /zlib.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 'zlib.h')
-rw-r--r--zlib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/zlib.h b/zlib.h
index b8e87f99..ef10856f 100644
--- a/zlib.h
+++ b/zlib.h
@@ -37,10 +37,10 @@ public:
class UnsupportedAlgorithm : public Err {public: UnsupportedAlgorithm() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: unsupported algorithm") {}};
class UnsupportedPresetDictionary : public Err {public: UnsupportedPresetDictionary() : Err(INVALID_DATA_FORMAT, "ZlibDecompressor: unsupported preset dictionary") {}};
- //! \brief Construct a ZlibDecompressor
- //! \param attachment a \ BufferedTransformation to attach to this object
- //! \param repeat decompress multiple compressed streams in series
- //! \param autoSignalPropagation 0 to turn off MessageEnd signal
+ /// \brief Construct a ZlibDecompressor
+ /// \param attachment a \ BufferedTransformation to attach to this object
+ /// \param repeat decompress multiple compressed streams in series
+ /// \param autoSignalPropagation 0 to turn off MessageEnd signal
ZlibDecompressor(BufferedTransformation *attachment = NULLPTR, bool repeat = false, int autoSignalPropagation = -1);
unsigned int GetLog2WindowSize() const {return m_log2WindowSize;}