mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-13 11:58:26 -06:00
Switch from auto_ptr to unique_ptr (#638)
This commit is contained in:
committed by
GitHub
parent
8250e83e61
commit
0a2c565aa9
@@ -489,6 +489,6 @@ namespace VeraCrypt
|
||||
}
|
||||
}
|
||||
|
||||
auto_ptr <CoreBase> Core (new CoreServiceProxy <CoreLinux>);
|
||||
auto_ptr <CoreBase> CoreDirect (new CoreLinux);
|
||||
unique_ptr <CoreBase> Core (new CoreServiceProxy <CoreLinux>);
|
||||
unique_ptr <CoreBase> CoreDirect (new CoreLinux);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user