2016-06-13 11:55 GMT+02:00 Bruno Chareyre <[email protected]>: > /usr/include/vtk-6.0/vtkMath.h:1249:18: error: call of overloaded > ‘isinf(double&)’ is ambiguous > return (isinf(x) != 0); // Force conversion to bool > > Any idea?
Try to change in /usr/include/vtk-6.0/vtkMath.h to: return (std::isinf(x) != 0) It has nothing to do with Yade though. Anton _______________________________________________ Mailing list: https://launchpad.net/~yade-dev Post to : [email protected] Unsubscribe : https://launchpad.net/~yade-dev More help : https://help.launchpad.net/ListHelp

