* indentations + whitespace cleanup

This commit is contained in:
Caner Candan 2011-05-05 16:54:00 +02:00
commit 56c6edab04
285 changed files with 6068 additions and 6223 deletions

View file

@ -1,4 +1,3 @@
#ifndef eoFuncPtrStat_h
#define eoFuncPtrStat_h
@ -21,9 +20,9 @@ public :
eoFuncPtrStat(func_t f, std::string _description = "func_ptr")
: eoStat<EOT, T>(T(), _description), func(f)
{}
using eoStat<EOT, T>::value;
void operator()(const eoPop<EOT>& pop) {
value() = func(pop);
}
@ -32,7 +31,7 @@ private:
func_t func;
};
/**
/**
* @ingroup Stats
*/
template <class EOT, class T>
@ -43,4 +42,3 @@ eoFuncPtrStat<EOT, T>& makeFuncPtrStat( T (*func)(const eoPop<EOT>&), eoFunctorS
}
#endif