summaryrefslogtreecommitdiff
path: root/rdrand.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 /rdrand.h
parent5f70a7c85e02f3c3392930d32682a500d7258b8c (diff)
downloadcryptopp-git-c45435812225aa68d122c7de246e5f60b509766c.tar.gz
Crypto++ 5.6.3 check-in
Diffstat (limited to 'rdrand.h')
-rw-r--r--rdrand.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/rdrand.h b/rdrand.h
index 05b177f7..fc2b77b7 100644
--- a/rdrand.h
+++ b/rdrand.h
@@ -16,7 +16,7 @@
// to select an implementation or "throw NotImplemented". At runtime, the
// class uses the result of CPUID to determine if RDRAND or RDSEED are
// available. A lazy throw strategy is used in case the CPU does not support
-// the instruction. I.e., the throw is deferred until GenerateBlock is called.
+// the instruction. I.e., the throw is deferred until GenerateBlock() is called.
// Microsoft added RDRAND in August 2012, VS2012. GCC added RDRAND in December 2010, GCC 4.6.
// Clang added RDRAND in July 2012, Clang 3.2. Intel added RDRAND in September 2011, ICC 12.1.
@@ -48,7 +48,7 @@ public:
virtual ~RDRAND() {}
//! \brief Retrieve the number of retries used by the generator
- //! returns the number of times GenerateBlock will attempt to recover from a failed generation
+ //! \returns the number of times GenerateBlock() will attempt to recover from a failed generation
unsigned int GetRetries() const
{
return m_retries;
@@ -127,7 +127,7 @@ public:
virtual ~RDSEED() {}
//! \brief Retrieve the number of retries used by the generator
- //! returns the number of times GenerateBlock will attempt to recover from a failed generation
+ //! \returns the number of times GenerateBlock() will attempt to recover from a failed generation
unsigned int GetRetries() const
{
return m_retries;