summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWStatistics.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-02-10 02:01:21 +0100
committerPierre Bourdon <delroth@gmail.com>2014-02-10 02:01:21 +0100
commit28b5c8be47c5afb18c021f10b24ad1423b20a8fc (patch)
tree86983787390023ae0468750a86d9794d6d66872c /Source/Core/VideoBackends/Software/SWStatistics.cpp
parente57f02e68b206fc7d3e22f8c0054fc56ae19c2c3 (diff)
parentfc30597f7a1f95ea3dd1c1e5cb3da5f5bc0597b5 (diff)
Merge pull request #53 from lioncash/remove-another-xchg
Remove function Xchg from SWStatistics.cpp.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWStatistics.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWStatistics.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/Core/VideoBackends/Software/SWStatistics.cpp b/Source/Core/VideoBackends/Software/SWStatistics.cpp
index 99b51b77a1..c033e2f684 100644
--- a/Source/Core/VideoBackends/Software/SWStatistics.cpp
+++ b/Source/Core/VideoBackends/Software/SWStatistics.cpp
@@ -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;