diff --git a/log.h b/log.h index 70d9af62..7968a849 100644 --- a/log.h +++ b/log.h @@ -29,21 +29,20 @@ SOFTWARE. #ifndef __ETL_LOG__ #define __ETL_LOG__ -#include +#include ///\defgroup log log -/// A set of templates to generate compile time constants.
/// log : Calculates logs to any base, rounded down to the nearest integer.
/// log2 : Calculates logs to base 2, rounded down to the nearest integer.
/// log10 : Calculates logs to base 10, rounded down to the nearest integer.
-///\ingroup Maths +///\ingroup maths namespace etl { //*************************************************************************** ///\ingroup log /// The base generic log template. - /// Defines 'value' as the log of the number at the specified base. + /// Defines value as the log of the number at the specified base. /// The result is rounded down to the next integer. ///\tparam N The number to find the log of. ///\tparam BASE The base of the log.