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
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org