Index: head/science/gchemutils/files/patch-libs_gcu_spacegroup.cc =================================================================== --- head/science/gchemutils/files/patch-libs_gcu_spacegroup.cc (nonexistent) +++ head/science/gchemutils/files/patch-libs_gcu_spacegroup.cc (revision 470464) @@ -0,0 +1,20 @@ +--- libs/gcu/spacegroup.cc.orig 2018-05-20 17:09:17.854019000 +0200 ++++ libs/gcu/spacegroup.cc 2018-05-20 17:22:26.142391000 +0200 +@@ -340,7 +340,7 @@ + Transform3d const * SpaceGroup::GetFirstTransform (list ::const_iterator &i) const + { + i = m_Transforms.begin (); +- return (i == m_Transforms.end())? reinterpret_cast (NULL): *i; ++ return (i == m_Transforms.end())? static_cast (NULL): *i; + } + + /*! +@@ -348,7 +348,7 @@ + Transform3d const * SpaceGroup::GetNextTransform (list ::const_iterator &i) const + { + i++; +- return (i == m_Transforms.end ())? reinterpret_cast (NULL): *i; ++ return (i == m_Transforms.end ())? static_cast (NULL): *i; + } + + /*! Property changes on: head/science/gchemutils/files/patch-libs_gcu_spacegroup.cc ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property