[osg-users] OSG 3.4 branch build failure in osgViewer/View
James Turner
zakalawe at mac.com
Wed Jan 20 16:18:54 PST 2016
Hi,
With XCode 7 (Apple LLVM version 7.0.2 (clang-700.1.81)) I’m getting a compile failure in osgViewer/View, line 130: it looks like the template is wrong, currently:
template<class T> void setImagePager(const osg::ref_ptr<T>* ip) { setImagePager(ip.get()); }
when it should be: (I guess)
template<class T> void setImagePager(const osg::ref_ptr<T>& ip) { setImagePager(ip.get()); }
Can anyone else confirm this? I’m surprised no one else is experiencing this.
Kind regards,
James
More information about the osg-users
mailing list