uncrustify libraries/Filter/DerivativeFilter.h

This commit is contained in:
uncrustify 2012-08-16 23:22:10 -07:00 committed by Pat Hickey
parent 973dcba9ab
commit 6bfccd13f8

View File

@ -24,7 +24,8 @@ class DerivativeFilter : public FilterWithBuffer<T,FILTER_SIZE>
{
public:
// constructor
DerivativeFilter() : FilterWithBuffer<T,FILTER_SIZE>() {};
DerivativeFilter() : FilterWithBuffer<T,FILTER_SIZE>() {
};
// update - Add a new raw value to the filter, but don't recalculate
virtual void update(T sample, uint32_t timestamp);