ofxFBX icon indicating copy to clipboard operation
ofxFBX copied to clipboard

argument list missing after assumed function template 'list' (Windows/OF 0.12.1 VS)

Open moebiussurfing opened this issue 3 months ago • 3 comments

I tried to add #include <list> but not sure how to fix...

moebiussurfing avatar Sep 24 '25 15:09 moebiussurfing

@moebiussurfing can you share more about the error? A specific file in the addon if relevant.

NickHardeman avatar Sep 24 '25 17:09 NickHardeman

identifier "list" is undefined
expected a ';'
identifier "skeletonBases" is undefined
type name is not allowed
expected an expression
identifier "it" is undefined
list is not a template
list is not a template
Local variable is not initialized.
The member function can be made const.
Local variable is not initialized.
Local variable is not initialized.
Local variable is not initialized.
Local variable is not initialized.
Local variable is not initialized.
Local variable is not initialized.
Local variable is not initialized.
argument list missing after assumed function template 'list'
argument list missing after assumed function template 'list'
Image Image Image

moebiussurfing avatar Sep 24 '25 23:09 moebiussurfing

Can you try adding std:: like so std::list<FbxNode*>& aSkeletonBases And #include <list> at the top of ofxFBXSrcScene.h

NickHardeman avatar Sep 25 '25 15:09 NickHardeman