1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-04 11:23:46 +00:00

cad/meshdev: Support modern gcc by adding <cstring> header

This commit is contained in:
John Marino 2015-09-20 15:22:52 +00:00
parent 3a63ba57c2
commit e69f537ec9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=397375

View File

@ -0,0 +1,10 @@
--- src/VectorT.h.orig 2012-02-06 13:02:05 UTC
+++ src/VectorT.h
@@ -22,6 +22,7 @@
#include <math.h>
#include <algorithm>
#include <iostream>
+#include <cstring>
template<typename Type, int Size>
class VectorT