You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am running into a problem building using Visual Studio.
The error is as follows: manif/impl/bundle/Bundle.h(21): error C2947: expecting '>' to terminate template-argument-list, found '<'
Line in question is using Elements = std::tuple< _T<_Scalar> ... >;
My experience with templates is very limited, any help is appreciated.
Thank you.
The text was updated successfully, but these errors were encountered:
Hi,
Thanks for reporting. I am aware of this issue and spent some time investigating it in the past. Unfortunately I don't have a Windows machine at hand which makes it difficult to properly debug.
In the meantime, if you do not need the Bundle class, you can simply comment it out in the CMake files.
I was hoping to use Bundle, its a fantastic way to combine elements into a larger group and I really like that all the sizes get determined at compile time. I think the performance should be really good.
I'll poke around and try to get MSVC working. If you have any insights please let me know.
Cheers.
I am running into a problem building using Visual Studio.
The error is as follows:
manif/impl/bundle/Bundle.h(21): error C2947: expecting '>' to terminate template-argument-list, found '<'
Line in question is
using Elements = std::tuple< _T<_Scalar> ... >;
My experience with templates is very limited, any help is appreciated.
Thank you.
The text was updated successfully, but these errors were encountered: