From 3d0a57c0ec0c4b3bb14487e25306e1f4f94efab4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Wed, 24 Jul 2013 08:06:25 +0000 Subject: [PATCH] Wrong size type git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@864 fdac6126-5c0c-442c-9429-916003d36597 --- src/OpenMesh/Tools/VDPM/VHierarchyWindow.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OpenMesh/Tools/VDPM/VHierarchyWindow.hh b/src/OpenMesh/Tools/VDPM/VHierarchyWindow.hh index 9c09a3f9..8125c1f1 100644 --- a/src/OpenMesh/Tools/VDPM/VHierarchyWindow.hh +++ b/src/OpenMesh/Tools/VDPM/VHierarchyWindow.hh @@ -114,7 +114,7 @@ private: { return (_node_handle.idx()/8 < buffer_min_) ? true : false; } bool overflow(VHierarchyNodeHandle _node_handle) const - { return (_node_handle.idx()/8 < buffer_max_) ? false : true; } + { return (_node_handle.idx()/8 < int(buffer_max_) ) ? false : true; } bool update_buffer(VHierarchyNodeHandle _node_handle);