Commit 3b99ed28 authored by lcgamboa's avatar lcgamboa

auto_ptr deprecated

parent f5bbebf2
......@@ -37,10 +37,9 @@
#if __cplusplus >= 201103L
template <typename T>
using xauto_ptr = std::unique_ptr<T>;
#define xauto_ptr std::unique_ptr
#else
using xauto_ptr = std::auto_ptr<T>;
#define xauto_ptr std::auto_ptr
#endif
bool UnzipDir(const String &in_filename, const String &out_dirname)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment