]> git.mxchange.org Git - simgear.git/commitdiff
Workaround for VS10 Bug/Remove superfluous class qualification
authorThomas Geymayer <tomgey@gmail.com>
Fri, 9 Nov 2012 09:36:42 +0000 (10:36 +0100)
committerThomas Geymayer <tomgey@gmail.com>
Fri, 9 Nov 2012 09:36:42 +0000 (10:36 +0100)
simgear/canvas/elements/CanvasGroup.cxx

index aa8c45c5da27efd781695a4d7b779b368b10a9ec..f5e9ce3ff61bd301bbeea2dcb240fddaf42e1fac 100644 (file)
@@ -222,7 +222,7 @@ namespace canvas
     (
       _children.begin(),
       _children.end(),
-      boost::bind(&Group::ChildList::value_type::first, _1) == node
+      boost::bind(&ChildList::value_type::first, _1) == node
     );
   }