summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config_int.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/config_int.h b/config_int.h
index 8b2d882d..672b1b77 100644
--- a/config_int.h
+++ b/config_int.h
@@ -128,11 +128,12 @@ typedef signed int sword32;
#endif
/// \brief Large word type
-/// \details a typedef for large word types, used for file offsets and such.
+/// \details lword is a typedef for large word types. It is used for file
+/// offsets and such.
typedef word64 lword;
/// \brief Large word type max value
-/// \details the maximum value for large word types.
+/// \details LWORD_MAX is the maximum value for large word types.
const lword LWORD_MAX = W64LIT(0xffffffffffffffff);
#if defined(CRYPTOPP_DOXYGEN_PROCESSING)