mirror of
https://github.com/veracrypt/VeraCrypt.git
synced 2025-11-12 19:38:26 -06:00
Switch from auto_ptr to unique_ptr (#638)
This commit is contained in:
committed by
GitHub
parent
8250e83e61
commit
0a2c565aa9
@@ -592,5 +592,5 @@ namespace VeraCrypt
|
||||
VolumeSlotNumber FuseService::SlotNumber;
|
||||
uid_t FuseService::UserId;
|
||||
gid_t FuseService::GroupId;
|
||||
auto_ptr <Pipe> FuseService::SignalHandlerPipe;
|
||||
unique_ptr <Pipe> FuseService::SignalHandlerPipe;
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace VeraCrypt
|
||||
static VolumeSlotNumber SlotNumber;
|
||||
static uid_t UserId;
|
||||
static gid_t GroupId;
|
||||
static auto_ptr <Pipe> SignalHandlerPipe;
|
||||
static unique_ptr <Pipe> SignalHandlerPipe;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user