summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-07-03 23:19:22 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-07-07 23:15:03 +0200
commitb6ac91c0e6416eda0dec226c5dbe5716f293e4f6 (patch)
tree885a240c6cc6dfbe7a4daf0a0b002e5ea06ffbb0 /bin
parent1b9433594ecc6c935c81e9030a6b52c7b56cb3a4 (diff)
Removed unused variables (first pass)
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
Diffstat (limited to 'bin')
-rw-r--r--bin/tests/test_math.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/bin/tests/test_math.cpp b/bin/tests/test_math.cpp
index 9110f72620..8e08969fa4 100644
--- a/bin/tests/test_math.cpp
+++ b/bin/tests/test_math.cpp
@@ -125,10 +125,7 @@ MainLoop* test() {
for (List<StringName>::Element *E=tl.front();E;E=E->next()) {
Vector<uint8_t> m5b = E->get().operator String().md5_buffer();
- uint32_t *ub = (uint32_t*)m5b.ptr();
- //hashes.push_back(ihash(ihash2(ihash3(*ub))));
hashes.push_back(hashes.size());
- //hashes.push_back(E->get().hash());
}