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
No related branches found
No related tags found
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
// WARNING only useful for the getType method of the class getType
// must be deleted in future release
enum MatType
{
Dense,
Sparse,
Diag,
BSR,
Butterfly,
Perm,
None
};
namespace Faust
{
enum MatType
{
Dense,
Sparse,
Diag,
BSR,
Butterfly,
Perm,
None
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment