Switch an auto_ptr to a unique_ptr

This commit is contained in:
Joe Thornber 2017-03-13 13:20:52 +00:00
parent 5fd0b02e40
commit 4c311cf6d4

View File

@ -40,7 +40,7 @@ namespace thin_provisioning {
int fd_; int fd_;
validator::ptr v_; validator::ptr v_;
std::auto_ptr<block_cache> cache_; std::unique_ptr<block_cache> cache_;
block_address current_index_; block_address current_index_;
}; };