summaryrefslogtreecommitdiff
path: root/mqueue.h
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2005-09-05 22:14:17 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2005-09-05 22:14:17 +0000
commitb4e740065eb3dfaf28342a1b94350e9252af8949 (patch)
tree68b70bac2ecaed3f048ae130e098404da94d4642 /mqueue.h
parent4e37f436f4425ce1c428f93bedd81bfdc4dc23f7 (diff)
downloadcryptopp-b4e740065eb3dfaf28342a1b94350e9252af8949.tar.gz
fix inline doc
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@212 57ff6487-cd31-0410-9ec3-f628ee90f5f0
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 390b44c..a4ee117 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)