Cleared "register is deprecated" warning on OS X with ancient versions of the C++ runtime library
parent
491e8dbd74
commit
c8860d6fa9
6
des.cpp
6
des.cpp
|
|
@ -279,8 +279,10 @@ void RawDES::RawSetKey(CipherDir dir, const byte *key)
|
||||||
byte *const pcr=pc1m+56; /* place to rotate pc1 into */
|
byte *const pcr=pc1m+56; /* place to rotate pc1 into */
|
||||||
byte *const ks=pcr+56;
|
byte *const ks=pcr+56;
|
||||||
|
|
||||||
// C++11 deprecated register
|
// C++11 deprecated register. Don't pivot on CRYPTOPP_CXX11 because
|
||||||
#if !defined(CRYPTOPP_CXX11)
|
// configure.h unsets the macro on some Apple platforms if it
|
||||||
|
// detects an ancient version.
|
||||||
|
#if (__cplusplus < 201103L)
|
||||||
register int i,j,l;
|
register int i,j,l;
|
||||||
#else
|
#else
|
||||||
int i,j,l;
|
int i,j,l;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue