From f71b9c4894e28756207bf63aa3ca12ec5086c942 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 31 Jan 2016 22:18:25 -0500 Subject: [PATCH] Updated documentation --- misc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/misc.h b/misc.h index 90851bec..4a807473 100644 --- a/misc.h +++ b/misc.h @@ -151,13 +151,13 @@ struct CompileAssert // ************** misc classes *************** -#if !CRYPTOPP_DOXYGEN_PROCESSING -//! \brief An Emptry class +//! \brief An Empty class //! \details The Empty class can be used as a template parameter BASE when no base class exists. class CRYPTOPP_DLL Empty { }; +#if !CRYPTOPP_DOXYGEN_PROCESSING template class CRYPTOPP_NO_VTABLE TwoBases : public BASE1, public BASE2 { @@ -2077,6 +2077,7 @@ T StringToWord(const std::string &str, ByteOrder order = BIG_ENDIAN_ORDER) //! \details SafeShifter safely shifts values when undefined behavior could occur under C/C++ rules. //! The class behaves much like a saturating arithmetic class, clamping values rather than allowing //! the compiler to remove undefined behavior. +//! \sa SafeShifter, SafeShifter template struct SafeShifter; //! \class SafeShifter