Mentions légales du service

Skip to content
Snippets Groups Projects
Commit fbb50cff authored by hhakim's avatar hhakim
Browse files

Fix missing identity default to false in MatGeneric deft ctor.

parent 7ff3b084
Branches
Tags
No related merge requests found
......@@ -69,7 +69,7 @@ namespace Faust
public:
MatGeneric() : dim1(0), dim2(0), is_ortho(false) {}
MatGeneric() : dim1(0), dim2(0), is_ortho(false), is_identity(false) {}
MatGeneric(faust_unsigned_int dim1_, faust_unsigned_int dim2_) : dim1(dim1_), dim2(dim2_), is_ortho(false), is_identity(false) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment