Remove function Xchg from SWStatistics.cpp. Like the one previous, this can be replaced with std::swap

This commit is contained in:
Lioncash 2014-02-09 19:54:33 -05:00
parent e59f770ccb
commit fc30597f7a

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;