summaryrefslogtreecommitdiff
path: root/mqueue.h
diff options
context:
space:
mode:
authorweidai <weidai11@users.noreply.github.com>2005-09-05 22:14:17 +0000
committerweidai <weidai11@users.noreply.github.com>2005-09-05 22:14:17 +0000
commit93c8735decc7cca9505e43096c6bf94dcbdb1198 (patch)
tree68b70bac2ecaed3f048ae130e098404da94d4642 /mqueue.h
parent09bb1aab6411aa9f373a037a46f8986d48b56075 (diff)
downloadcryptopp-git-93c8735decc7cca9505e43096c6bf94dcbdb1198.tar.gz
fix inline doc
Diffstat (limited to 'mqueue.h')
-rw-r--r--mqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mqueue.h b/mqueue.h
index 390b44cc..a4ee117c 100644
--- a/mqueue.h
+++ b/mqueue.h
@@ -68,7 +68,7 @@ class CRYPTOPP_DLL EqualityComparisonFilter : public Unflushable<Multichannel<Fi
public:
struct MismatchDetected : public Exception {MismatchDetected() : Exception(DATA_INTEGRITY_CHECK_FAILED, "EqualityComparisonFilter: did not receive the same data on two channels") {}};
- /*! if throwIfNotEqual is false, this filter will output a '\0' byte when it detects a mismatch, '\1' otherwise */
+ /*! if throwIfNotEqual is false, this filter will output a '\\0' byte when it detects a mismatch, '\\1' otherwise */
EqualityComparisonFilter(BufferedTransformation *attachment=NULL, bool throwIfNotEqual=true, const std::string &firstChannel="0", const std::string &secondChannel="1")
: m_throwIfNotEqual(throwIfNotEqual), m_mismatchDetected(false)
, m_firstChannel(firstChannel), m_secondChannel(secondChannel)