Replace std::auto_ptr with std::unique_ptr. NFC.

std::auto_ptr has been deprecated in C++11, which some compilers warn
about.

llvm-svn: 261787
This commit is contained in:
Michael Kruse 2016-02-24 22:08:05 +00:00
parent f8266fad8d
commit 264c3bc15a
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ private:
Scop *S;
/// @brief Dependences struct for the current SCoP.
std::auto_ptr<Dependences> D;
std::unique_ptr<Dependences> D;
};
} // End polly namespace.