From e8877dc4aeb95dbaf044604f4f08c6db19b497e0 Mon Sep 17 00:00:00 2001 From: jwellbelove Date: Mon, 8 Dec 2014 20:22:01 +0000 Subject: [PATCH] Changed to stddef.h --- log.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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.