mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2026-07-20 06:52:35 +00:00
Switch from auto_ptr to unique_ptr (#638)
This commit is contained in:
committed by
GitHub
parent
8250e83e61
commit
0a2c565aa9
@@ -200,7 +200,7 @@ namespace VeraCrypt
|
||||
}
|
||||
|
||||
#ifdef TC_FREEBSD
|
||||
auto_ptr <CoreBase> Core (new CoreServiceProxy <CoreFreeBSD>);
|
||||
auto_ptr <CoreBase> CoreDirect (new CoreFreeBSD);
|
||||
unique_ptr <CoreBase> Core (new CoreServiceProxy <CoreFreeBSD>);
|
||||
unique_ptr <CoreBase> CoreDirect (new CoreFreeBSD);
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user