mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-24 20:13:33 +01:00
MacOSX: fix link error under Xcode 4.6.3
This commit is contained in:
parent
a4145721a7
commit
6d7f7527be
@ -16,6 +16,10 @@
|
||||
|
||||
namespace VeraCrypt
|
||||
{
|
||||
const size_t VolumePassword::MaxLegacySize = 64;
|
||||
const size_t VolumePassword::MaxSize = 128;
|
||||
const size_t VolumePassword::WarningSizeThreshold = 12;
|
||||
|
||||
VolumePassword::VolumePassword () : PasswordSize (0)
|
||||
{
|
||||
AllocateBuffer ();
|
||||
|
@ -41,9 +41,9 @@ namespace VeraCrypt
|
||||
|
||||
TC_SERIALIZABLE (VolumePassword);
|
||||
|
||||
static const size_t MaxLegacySize = 64;
|
||||
static const size_t MaxSize = 128;
|
||||
static const size_t WarningSizeThreshold = 12;
|
||||
static const size_t MaxLegacySize;
|
||||
static const size_t MaxSize;
|
||||
static const size_t WarningSizeThreshold;
|
||||
|
||||
protected:
|
||||
void AllocateBuffer ();
|
||||
|
Loading…
Reference in New Issue
Block a user