From 4efcda534d8cbdeb70e3a25d5cea8fe70ba75948 Mon Sep 17 00:00:00 2001 From: Thomas Geymayer Date: Fri, 9 Nov 2012 10:36:42 +0100 Subject: [PATCH] Workaround for VS10 Bug/Remove superfluous class qualification --- simgear/canvas/elements/CanvasGroup.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simgear/canvas/elements/CanvasGroup.cxx b/simgear/canvas/elements/CanvasGroup.cxx index aa8c45c5..f5e9ce3f 100644 --- a/simgear/canvas/elements/CanvasGroup.cxx +++ b/simgear/canvas/elements/CanvasGroup.cxx @@ -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 ); } -- 2.39.5