g++/final: don't add extra code to check for buffer overflows (-fno-stack-protector)
[senf.git] / senf / Utils / StatisticAccumulator.cti
index 3234b53..d8ed082 100644 (file)
@@ -23,7 +23,9 @@
 // All Rights Reserved.
 //
 // Contributor(s):
-//   Thorsten Horstmann <tho@berlios.de>
+//   Mathias Kretschmer <mtk@berlios.de>
+//   Jens Moedeker <jmo@berlios.de>
+
 /** \file
     \brief StatisticAccumulator inline template implementation */
 
@@ -56,12 +58,6 @@ prefix_ float senf::StatisticAccumulator<T>::avg()
     return count_ == 0 ? NAN : (sum_ / float(count_));
 }
 
-//template <class T>
-//prefix_ senf::Statistics & senf::StatisticAccumulator<T>::statistics()
-//{
-//    return stats_;
-//}
-
 template <class T>
 prefix_ float senf::StatisticAccumulator<T>::last_avg()
     const