summaryrefslogtreecommitdiff
path: root/misc.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-11-20 19:15:33 -0500
committerJeffrey Walton <noloader@gmail.com>2015-11-20 19:15:33 -0500
commitc45435812225aa68d122c7de246e5f60b509766c (patch)
treed834edb16c82beed38291b896cfb3ac145dd5aae /misc.h
parent5f70a7c85e02f3c3392930d32682a500d7258b8c (diff)
downloadcryptopp-git-c45435812225aa68d122c7de246e5f60b509766c.tar.gz
Crypto++ 5.6.3 check-in
Diffstat (limited to 'misc.h')
-rw-r--r--misc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc.h b/misc.h
index 4132d806..dfa5122d 100644
--- a/misc.h
+++ b/misc.h
@@ -129,8 +129,8 @@ struct CompileAssert
//! \brief Counts elements in an array
//! \param arr an array of elements
//! \details COUNTOF counts elements in an array. On Windows COUNTOF(x) is deinfed
-//! to _countof(x) to ensure correct results for pointers. Since the library code is
-//! cross-platform, Windows will ensure the safety on non-Windows platforms.
+//! to <tt>_countof(x)</tt> to ensure correct results for pointers. Since the library code
+//! is cross-platform, Windows will ensure the safety on non-Windows platforms.
//! \note COUNTOF does not produce correct results with pointers, and an array must be used.
//! The library ensures correct application of COUNTOF by enlisting _countof on Windows
//! platforms. Microsoft's _countof fails to compile using pointers.