Won't compile on GCC 4.3
Status: Alpha
Brought to you by:
markus_l
I get an error compiling with GCC 4.3
client/ShareManager.h:245: error: ISO C++ forbids declaration of 'auto_ptr' with no type
client/ShareManager.h:245: error: expected ';' before '<' token
I had add the followin line to fix it:
#include <memory>
This works for GCC 4.4 too, thanks!