From: Gregory S. <wo...@tr...> - 2009-10-10 02:36:30
|
GenericEndianBuffer uses memcpy without ever including it--it no longer compiles for me after switching to Ubuntu. Here's the fix: --- GenericEndianBuffer.cpp (revision 129) +++ GenericEndianBuffer.cpp (working copy) @@ -15,6 +15,7 @@ * along with ShapeFusion; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#include <cstring> #include <iostream> #include "GenericEndianBuffer.h" |