hello i have this error when compiling ofxPostProcessing …
an idea?
of_v0.10.0_linux64gcc6_release/addons/ofxPostProcessing/src/RenderPass.h:53:17: error: « shared_ptr » ne nomme pas un type; vouliez-vous utiliser « char16_t » ?
typedef shared_ptr<RenderPass> Ptr;
I just started using openFrameworks and was getting the same error compiling anything using ofxPostProcessing.
I fixed this by adding using namespace std; before the class declaration. I had to add this at several places to fix all the subsequent errors. Not sure what should be the right place.