forked from OSchip/llvm-project
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:
parent
f8266fad8d
commit
264c3bc15a
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue