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
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
The text was updated successfully, but these errors were encountered:
ghost
changed the title
C++11 using deprecated method "std::auto_ptr" instead "std::unique_ptr"
C++11 using deprecated method "std::auto_ptr" instead of "std::unique_ptr"
Jul 30, 2015
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
The text was updated successfully, but these errors were encountered: