summaryrefslogtreecommitdiff
path: root/config_int.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-12-27 02:14:08 -0500
committerJeffrey Walton <noloader@gmail.com>2020-12-27 02:14:08 -0500
commitb41adf2b1672c1eb2a710d9ba578ba541cc3fd02 (patch)
tree765e37ab89f5c14a591cd96504925644ea4c387c /config_int.h
parent9ba541c32b0d4a62eaea2e5dab7c3c59a2300ca7 (diff)
downloadcryptopp-git-b41adf2b1672c1eb2a710d9ba578ba541cc3fd02.tar.gz
Update documentation
Diffstat (limited to 'config_int.h')
-rw-r--r--config_int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/config_int.h b/config_int.h
index 0d493661..2f74480f 100644
--- a/config_int.h
+++ b/config_int.h
@@ -32,8 +32,8 @@
/// \details CRYPTOPP_NO_GLOBAL_BYTE indicates <tt>byte</tt> is in the Crypto++
/// namespace.
/// \details The Crypto++ <tt>byte</tt> was originally in global namespace to avoid
-/// ambiguity with other byte typedefs. <tt>byte</tt> was moved to Crypto++ namespace
-/// due to C++17, <tt>std::byte</tt> and potential compile problems.
+/// ambiguity with other byte typedefs. <tt>byte</tt> was moved to CryptoPP namespace
+/// at Crypto++ 6.0 due to C++17, <tt>std::byte</tt> and potential compile problems.
/// \sa <A HREF="http://github.com/weidai11/cryptopp/issues/442">Issue 442</A>,
/// <A HREF="https://www.cryptopp.com/wiki/Configure.sh">std::byte</A> on the
/// Crypto++ wiki
@@ -47,7 +47,7 @@ NAMESPACE_BEGIN(CryptoPP)
/// \brief 8-bit unsigned datatype
/// \details The Crypto++ <tt>byte</tt> was originally in global namespace to avoid
-/// ambiguity with other byte typedefs. <tt>byte</tt> was moved to Crypto++ namespace
+/// ambiguity with other byte typedefs. <tt>byte</tt> was moved to CryptoPP namespace
/// at Crypto++ 6.0 due to C++17, <tt>std::byte</tt> and potential compile problems.
/// \sa CRYPTOPP_NO_GLOBAL_BYTE, <A HREF="http://github.com/weidai11/cryptopp/issues/442">Issue 442</A>,
/// <A HREF="https://www.cryptopp.com/wiki/Configure.sh">std::byte</A> on the