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
1 changed files with 10 additions and 0 deletions

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