Elusive CSG bug finally squashed

stl_dim
Marius Kintel 2010-11-01 04:29:41 +01:00
parent c36f5e1c47
commit 45a3d59bb7
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ public:
void setPostfix(bool on) { this->ispostfix = on; }
void setNumChildren(unsigned int numc) { this->numchildren = numc; }
void setParent(const AbstractNode *parent) { this->parentnode = parent; }
void setMatrix(const double m[20]) { memcpy(this->m, m, sizeof(m)); }
void setMatrix(const double m[20]) { memcpy(this->m, m, 20*sizeof(m)); }
bool isPrefix() const { return this->isprefix; }
bool isPostfix() const { return this->ispostfix; }