Mentions légales du service

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

Move MatType enum from default namespace to Faust namespace.

It fixes ambiguous Sparse and Dense symbols (might be Eigen or default ns) error that occurs with Win VS.
parent f636e086
Branches
Tags
No related merge requests found
Pipeline #853064 passed
...@@ -88,16 +88,19 @@ using Real = typename Eigen::NumTraits<FPP>::Real; //TODO: should be in a hpp ...@@ -88,16 +88,19 @@ using Real = typename Eigen::NumTraits<FPP>::Real; //TODO: should be in a hpp
// WARNING only useful for the getType method of the class getType // WARNING only useful for the getType method of the class getType
// must be deleted in future release // must be deleted in future release
enum MatType namespace Faust
{ {
Dense, enum MatType
Sparse, {
Diag, Dense,
BSR, Sparse,
Butterfly, Diag,
Perm, BSR,
None Butterfly,
}; Perm,
None
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment