When used c ++ 11 directive the g++ show many warnings, because staff files use "std::auto_ptr",
This class is deprecated, i suggest use
"
if __cplusplus > 199711L
std::unique_ptr ...
else
std::auto_ptr ..
endif
"
or similar instead of "std::auto_ptr" code.
but it is not a problem is a warning.
Ty