aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-09-18 15:07:58 -0400
committerJeff Garzik <jgarzik@redhat.com>2012-09-18 15:07:58 -0400
commitea0796bde3483189643894c6a47d31c0dba0c486 (patch)
tree1cfcad47fd235034085d354fe5021f100d2bda5d /src/util.h
parent8b371316c57ddec3f996f7e903de191da281a4ce (diff)
downloadbitcoin-ea0796bde3483189643894c6a47d31c0dba0c486.tar.xz
Trim trailing whitespace for src/*.{h,cpp}
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h4
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)