From 66adfff9bae0c9616f2c637b1b18418189ff43d9 Mon Sep 17 00:00:00 2001 From: Foereaper Date: Tue, 31 Mar 2015 21:02:21 +0200 Subject: [PATCH] Clang return error fix --- src/game/vmap/BIHWrap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/vmap/BIHWrap.h b/src/game/vmap/BIHWrap.h index 96e3aea6..547a5896 100644 --- a/src/game/vmap/BIHWrap.h +++ b/src/game/vmap/BIHWrap.h @@ -83,7 +83,7 @@ class BIHWrap void operator()(const Vector3& p, uint32 Idx) { if (Idx >= objects_size) - { return false; } + { return; } if (const T* obj = objects[Idx]) { cb(p, *obj); }