From: Thomas Geymayer Date: Fri, 9 Nov 2012 09:36:42 +0000 (+0100) Subject: Workaround for VS10 Bug/Remove superfluous class qualification X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4efcda534d8cbdeb70e3a25d5cea8fe70ba75948;p=simgear.git Workaround for VS10 Bug/Remove superfluous class qualification --- 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 ); }