diff options
author | Jeff Garzik <jgarzik@exmulti.com> | 2012-09-18 15:07:58 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-09-18 15:07:58 -0400 |
commit | ea0796bde3483189643894c6a47d31c0dba0c486 (patch) | |
tree | 1cfcad47fd235034085d354fe5021f100d2bda5d /src/util.h | |
parent | 8b371316c57ddec3f996f7e903de191da281a4ce (diff) |
Trim trailing whitespace for src/*.{h,cpp}
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h index 65923e68a3..2409ccb79c 100644 --- a/src/util.h +++ b/src/util.h @@ -483,7 +483,7 @@ inline uint160 Hash160(const std::vector<unsigned char>& vch) } -/** Median filter over a stream of values. +/** Median filter over a stream of values. * Returns the median of the last N numbers */ template <typename T> class CMedianFilter @@ -500,7 +500,7 @@ public: vValues.push_back(initial_value); vSorted = vValues; } - + void input(T value) { if(vValues.size() == nSize) |