From 082fb46fc1207b5a44b97d86a457bcf1ea4997fc Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 27 Dec 2020 02:02:30 -0500 Subject: Update documentation --- config_int.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'config_int.h') diff --git a/config_int.h b/config_int.h index 52cfeaf5..7e6dc7b3 100644 --- a/config_int.h +++ b/config_int.h @@ -104,7 +104,8 @@ typedef signed int sword32; /// \brief Declare an unsigned word64 /// \details W64LIT is used to portability declare or assign 64-bit literal values. - /// Use the macro like shown below. + /// W64LIT will append the proper suffix to ensure the compiler accepts the literal. + /// \details Use the macro like shown below. ///
 	///    word64 x = W64LIT(0xffffffffffffffff);
 	///  
@@ -113,7 +114,8 @@ typedef signed int sword32; /// \brief Declare a signed word64 /// \details SW64LIT is used to portability declare or assign 64-bit literal values. - /// Use the macro like shown below. + /// SW64LIT will append the proper suffix to ensure the compiler accepts the literal. + /// \details Use the macro like shown below. ///
 	///    sword64 x = SW64LIT(0xffffffffffffffff);
 	///  
@@ -151,6 +153,8 @@ typedef word64 lword; /// \brief Large word type max value /// \details LWORD_MAX is the maximum value for large word types. +/// Since an lword is an unsigned type, the value is +/// 0xffffffffffffffff. W64LIT will append the proper suffix. const lword LWORD_MAX = W64LIT(0xffffffffffffffff); #if defined(CRYPTOPP_DOXYGEN_PROCESSING) -- cgit v1.2.1