Merge pull request #53 from lioncash/remove-another-xchg

Remove function Xchg from SWStatistics.cpp.
This commit is contained in:
Pierre Bourdon 2014-02-10 02:01:21 +01:00
commit 28b5c8be47

View File

@ -6,14 +6,6 @@
SWStatistics swstats;
template <class T>
void Xchg(T& a, T&b)
{
T c = a;
a = b;
b = c;
}
SWStatistics::SWStatistics()
{
frameCount = 0;