Linking error against Cryptopp on OS X Yosemite

228 views
Skip to first unread message

Freddy Martinez

unread,
Aug 7, 2015, 12:45:53 AM8/7/15
to Crypto++ Users
Hi guys... I had downloaded and compiled cryptopp from http://www.cryptopp.com/#download, but when I try to link against the library, I got the following errors:


In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:6:

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:402:41: warning: unused parameter 'iv' [-Wunused-parameter]

virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:402:49: warning: unused parameter 'ivLength' [-Wunused-parameter]

virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:511:26: warning: unused parameter 'n' [-Wunused-parameter]

virtual void Seek(lword n)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:659:49: warning: unused parameter 'headerLength' [-Wunused-parameter]

virtual void UncheckedSpecifyDataLengths(lword headerLength, lword messageLength, lword footerLength) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:659:69: warning: unused parameter 'messageLength' [-Wunused-parameter]

virtual void UncheckedSpecifyDataLengths(lword headerLength, lword messageLength, lword footerLength) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:659:90: warning: unused parameter 'footerLength' [-Wunused-parameter]

virtual void UncheckedSpecifyDataLengths(lword headerLength, lword messageLength, lword footerLength) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:673:46: warning: unused parameter 'input' [-Wunused-parameter]

virtual void IncorporateEntropy(const byte *input, size_t length) {throw NotImplemented("RandomNumberGenerator: IncorporateEntropy not implemented");}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:673:60: warning: unused parameter 'length' [-Wunused-parameter]

virtual void IncorporateEntropy(const byte *input, size_t length) {throw NotImplemented("RandomNumberGenerator: IncorporateEntropy not implemented");}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:833:57: warning: unused parameter 'parameters' [-Wunused-parameter]

virtual void IsolatedInitialize(const NameValuePairs &parameters) {throw NotImplemented("BufferedTransformation: this object can't be reinitialized");}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:835:46: warning: unused parameter 'blocking' [-Wunused-parameter]

virtual bool IsolatedMessageSeriesEnd(bool blocking) {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:857:45: warning: unused parameter 'propagation' [-Wunused-parameter]

virtual void SetAutoSignalPropagation(int propagation) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1016:47: warning: unused parameter 'newAttachment' [-Wunused-parameter]

virtual void Detach(BufferedTransformation *newAttachment = 0)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1065:44: warning: unused parameter 'bt' [-Wunused-parameter]

virtual void Save(BufferedTransformation &bt) const

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1072:44: warning: unused parameter 'bt' [-Wunused-parameter]

virtual void Load(BufferedTransformation &bt)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1081:39: warning: unused parameter 'n' [-Wunused-parameter]

virtual void Precompute(unsigned int n)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1084:58: warning: unused parameter 'storedPrecomputation' [-Wunused-parameter]

virtual void LoadPrecomputation(BufferedTransformation &storedPrecomputation)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1087:58: warning: unused parameter 'storedPrecomputation' [-Wunused-parameter]

virtual void SavePrecomputation(BufferedTransformation &storedPrecomputation) const

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1107:53: warning: unused parameter 'rng' [-Wunused-parameter]

virtual void GenerateRandom(RandomNumberGenerator &rng, const NameValuePairs &params = g_nullNameValuePairs)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1107:80: warning: unused parameter 'params' [-Wunused-parameter]

virtual void GenerateRandom(RandomNumberGenerator &rng, const NameValuePairs &params = g_nullNameValuePairs)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1308:43: warning: unused parameter 'recoverablePartLength' [-Wunused-parameter]

virtual size_t MaxSignatureLength(size_t recoverablePartLength = 0) const {return SignatureLength();}

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1341:28: warning: unused parameter 'digest' [-Wunused-parameter]

void TruncatedFinal(byte *digest, size_t digestSize)

^

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:1341:43: warning: unused parameter 'digestSize' [-Wunused-parameter]

void TruncatedFinal(byte *digest, size_t digestSize)

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:7:

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:363:39: warning: unused parameter 'dummy' [-Wunused-parameter]

inline unsigned int GetAlignmentOf(T *dummy=NULL) // VC60 workaround

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:387:41: warning: unused parameter 'dummy' [-Wunused-parameter]

inline bool IsAligned(const void *p, T *dummy=NULL) // VC60 workaround

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1127:23: warning: unused parameter 'assumeAligned' [-Wunused-parameter]

inline T GetWord(bool assumeAligned, ByteOrder order, const byte *block)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1144:26: warning: unused parameter 'assumeAligned' [-Wunused-parameter]

inline void PutWord(bool assumeAligned, ByteOrder order, byte *block, T value, const byte *xorBlock = NULL)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1229:31: warning: unused parameter 'value' [-Wunused-parameter]

static inline T RightShift(T value, unsigned int bits)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1229:51: warning: unused parameter 'bits' [-Wunused-parameter]

static inline T RightShift(T value, unsigned int bits)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1235:30: warning: unused parameter 'value' [-Wunused-parameter]

static inline T LeftShift(T value, unsigned int bits)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:1235:50: warning: unused parameter 'bits' [-Wunused-parameter]

static inline T LeftShift(T value, unsigned int bits)

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:8:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/integer.h:7:

/Users/freddy/data/freddy/libs/cryptopp562/secblock.h:143:29: warning: unused parameter 'n' [-Wunused-parameter]

pointer allocate(size_type n, const void * = NULL)

^

/Users/freddy/data/freddy/libs/cryptopp562/secblock.h:149:24: warning: unused parameter 'p' [-Wunused-parameter]

void deallocate(void *p, size_type n)

^

/Users/freddy/data/freddy/libs/cryptopp562/secblock.h:149:37: warning: unused parameter 'n' [-Wunused-parameter]

void deallocate(void *p, size_type n)

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:9:

/Users/freddy/data/freddy/libs/cryptopp562/algebra.h:50:35: warning: unused parameter 'source' [-Wunused-parameter]

AbstractRing(const AbstractRing &source) {m_mg.m_pRing = this;}

^

/Users/freddy/data/freddy/libs/cryptopp562/algebra.h:51:46: warning: unused parameter 'source' [-Wunused-parameter]

AbstractRing& operator=(const AbstractRing &source) {return *this;}

^

/Users/freddy/data/freddy/libs/cryptopp562/algebra.h:210:46: warning: unused parameter 'rhs' [-Wunused-parameter]

bool operator==(const EuclideanDomainOf<T> &rhs) const

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

/Users/freddy/data/freddy/libs/cryptopp562/modarith.h:101:84: warning: unused parameter 'ignore_for_now' [-Wunused-parameter]

Element RandomElement( RandomNumberGenerator &rng , const RandomizationParameter &ignore_for_now = 0 ) const

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:6:

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:52:26: warning: unused parameter 'hardFlush' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking) {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:52:42: warning: unused parameter 'blocking' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking) {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:62:26: warning: unused parameter 'hardFlush' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:62:42: warning: unused parameter 'blocking' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:88:26: warning: unused parameter 'begin' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:88:40: warning: unused parameter 'length' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:88:52: warning: unused parameter 'messageEnd' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:88:69: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:93:40: warning: unused parameter 'channel' [-Wunused-parameter]

size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:93:61: warning: unused parameter 'begin' [-Wunused-parameter]

size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:93:75: warning: unused parameter 'length' [-Wunused-parameter]

size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:93:87: warning: unused parameter 'messageEnd' [-Wunused-parameter]

size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:93:104: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t ChannelPut2(const std::string &channel, const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:106:26: warning: unused parameter 'hardFlush' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking) {assert(false); return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:106:42: warning: unused parameter 'blocking' [-Wunused-parameter]

bool IsolatedFlush(bool hardFlush, bool blocking) {assert(false); return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:117:48: warning: unused parameter 'parameters' [-Wunused-parameter]

void IsolatedInitialize(const NameValuePairs &parameters) {assert(false);}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:138:50: warning: unused parameter 'channel' [-Wunused-parameter]

byte * ChannelCreatePutSpace(const std::string &channel, size_t &size)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:192:45: warning: unused parameter 'target' [-Wunused-parameter]

size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:192:94: warning: unused parameter 'channel' [-Wunused-parameter]

size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:192:124: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t TransferTo2(BufferedTransformation &target, lword &transferBytes, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:194:46: warning: unused parameter 'target' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:194:61: warning: unused parameter 'begin' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:194:74: warning: unused parameter 'end' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:194:108: warning: unused parameter 'channel' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:194:138: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:202:48: warning: unused parameter 'parameters' [-Wunused-parameter]

void IsolatedInitialize(const NameValuePairs &parameters) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:203:26: warning: unused parameter 'begin' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:203:40: warning: unused parameter 'length' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:203:52: warning: unused parameter 'messageEnd' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/simple.h:203:69: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:155:174: warning: unused parameter 'dummy' [-Wunused-parameter]

GetValueHelperClass<T, BASE> GetValueHelper(const T *pObject, const char *name, const std::type_info &valueType, void *pValue, const NameValuePairs *searchFirst=NULL, BASE *dummy=NULL)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:229:97: warning: unused parameter 'dummy' [-Wunused-parameter]

AssignFromHelperClass<T, BASE> AssignFromHelper(T *pObject, const NameValuePairs &source, BASE *dummy=NULL)

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:94:48: warning: unused parameter 'parameters' [-Wunused-parameter]

void IsolatedInitialize(const NameValuePairs &parameters) {ResetMeter();}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:174:92: warning: unused parameter 'firstSize' [-Wunused-parameter]

virtual void InitializeDerivedAndReturnNewSizes(const NameValuePairs &parameters, size_t &firstSize, size_t &blockSize, size_t &lastSize)

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:174:111: warning: unused parameter 'blockSize' [-Wunused-parameter]

virtual void InitializeDerivedAndReturnNewSizes(const NameValuePairs &parameters, size_t &firstSize, size_t &blockSize, size_t &lastSize)

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:174:130: warning: unused parameter 'lastSize' [-Wunused-parameter]

virtual void InitializeDerivedAndReturnNewSizes(const NameValuePairs &parameters, size_t &firstSize, size_t &blockSize, size_t &lastSize)

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:176:55: warning: unused parameter 'parameters' [-Wunused-parameter]

virtual void InitializeDerived(const NameValuePairs &parameters) {}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:181:41: warning: unused parameter 'inString' [-Wunused-parameter]

virtual void NextPutSingle(const byte *inString) {assert(false);}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:205:34: warning: unused parameter 'inString' [-Wunused-parameter]

virtual int NextPut(const byte *inString, size_t length) {assert(false); return 0;}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:205:51: warning: unused parameter 'length' [-Wunused-parameter]

virtual int NextPut(const byte *inString, size_t length) {assert(false); return 0;}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:251:48: warning: unused parameter 'parameters' [-Wunused-parameter]

void IsolatedInitialize(const NameValuePairs &parameters) {m_inQueue.Clear();}

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:597:52: warning: unused parameter 'messageEnd' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:597:69: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t Put2(const byte *begin, size_t length, int messageEnd, bool blocking)

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:700:46: warning: unused parameter 'target' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:700:61: warning: unused parameter 'begin' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:700:74: warning: unused parameter 'end' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:700:108: warning: unused parameter 'channel' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:700:138: warning: unused parameter 'blocking' [-Wunused-parameter]

size_t CopyRangeTo2(BufferedTransformation &target, lword &begin, lword end=LWORD_MAX, const std::string &channel=DEFAULT_CHANNEL, bool blocking=true) const

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:717:45: warning: unused parameter 'parameters' [-Wunused-parameter]

void StoreInitialize(const NameValuePairs &parameters) {}

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:71:57: warning: unused parameter 'rng' [-Wunused-parameter]

Integer ApplyRandomizedFunction(RandomNumberGenerator &rng, const Integer &x) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:109:46: warning: unused parameter 'name' [-Wunused-parameter]

virtual bool ParameterSupported(const char *name) const {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:189:51: warning: unused parameter 'hashIdentifierLength' [-Wunused-parameter]

virtual size_t MinRepresentativeBitLength(size_t hashIdentifierLength, size_t digestLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:189:80: warning: unused parameter 'digestLength' [-Wunused-parameter]

virtual size_t MinRepresentativeBitLength(size_t hashIdentifierLength, size_t digestLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:191:45: warning: unused parameter 'representativeBitLength' [-Wunused-parameter]

virtual size_t MaxRecoverableLength(size_t representativeBitLength, size_t hashIdentifierLength, size_t digestLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:191:77: warning: unused parameter 'hashIdentifierLength' [-Wunused-parameter]

virtual size_t MaxRecoverableLength(size_t representativeBitLength, size_t hashIdentifierLength, size_t digestLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:191:106: warning: unused parameter 'digestLength' [-Wunused-parameter]

virtual size_t MaxRecoverableLength(size_t representativeBitLength, size_t hashIdentifierLength, size_t digestLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:202:56: warning: unused parameter 'hash' [-Wunused-parameter]

virtual void ProcessSemisignature(HashTransformation &hash, const byte *semisignature, size_t semisignatureLength) const {}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:202:74: warning: unused parameter 'semisignature' [-Wunused-parameter]

virtual void ProcessSemisignature(HashTransformation &hash, const byte *semisignature, size_t semisignatureLength) const {}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:202:96: warning: unused parameter 'semisignatureLength' [-Wunused-parameter]

virtual void ProcessSemisignature(HashTransformation &hash, const byte *semisignature, size_t semisignatureLength) const {}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:205:61: warning: unused parameter 'hash' [-Wunused-parameter]

virtual void ProcessRecoverableMessage(HashTransformation &hash,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:206:15: warning: unused parameter 'recoverableMessage' [-Wunused-parameter]

const byte *recoverableMessage, size_t recoverableMessageLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:206:42: warning: unused parameter 'recoverableMessageLength' [-Wunused-parameter]

const byte *recoverableMessage, size_t recoverableMessageLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:207:15: warning: unused parameter 'presignature' [-Wunused-parameter]

const byte *presignature, size_t presignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:207:36: warning: unused parameter 'presignatureLength' [-Wunused-parameter]

const byte *presignature, size_t presignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:208:17: warning: unused parameter 'semisignature' [-Wunused-parameter]

SecByteBlock &semisignature) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:224:23: warning: unused parameter 'hash' [-Wunused-parameter]

HashTransformation &hash, HashIdentifier hashIdentifier, bool messageEmpty,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:224:44: warning: unused parameter 'hashIdentifier' [-Wunused-parameter]

HashTransformation &hash, HashIdentifier hashIdentifier, bool messageEmpty,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:224:65: warning: unused parameter 'messageEmpty' [-Wunused-parameter]

HashTransformation &hash, HashIdentifier hashIdentifier, bool messageEmpty,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:225:9: warning: unused parameter 'representative' [-Wunused-parameter]

byte *representative, size_t representativeBitLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:225:32: warning: unused parameter 'representativeBitLength' [-Wunused-parameter]

byte *representative, size_t representativeBitLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:226:9: warning: unused parameter 'recoveredMessage' [-Wunused-parameter]

byte *recoveredMessage) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:230:23: warning: unused parameter 'hash' [-Wunused-parameter]

HashTransformation &hash, HashIdentifier hashIdentifier,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:230:44: warning: unused parameter 'hashIdentifier' [-Wunused-parameter]

HashTransformation &hash, HashIdentifier hashIdentifier,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:231:15: warning: unused parameter 'presignature' [-Wunused-parameter]

const byte *presignature, size_t presignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:231:36: warning: unused parameter 'presignatureLength' [-Wunused-parameter]

const byte *presignature, size_t presignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:232:15: warning: unused parameter 'semisignature' [-Wunused-parameter]

const byte *semisignature, size_t semisignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:232:37: warning: unused parameter 'semisignatureLength' [-Wunused-parameter]

const byte *semisignature, size_t semisignatureLength,

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:233:9: warning: unused parameter 'recoveredMessage' [-Wunused-parameter]

byte *recoveredMessage) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:317:56: warning: unused parameter 'signatureLength' [-Wunused-parameter]

size_t MaxRecoverableLengthFromSignatureLength(size_t signatureLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:390:73: warning: unused parameter 'rng' [-Wunused-parameter]

PK_MessageAccumulator * NewSignatureAccumulator(RandomNumberGenerator &rng) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:905:67: warning: unused parameter 'params' [-Wunused-parameter]

virtual Integer RecoverPresignature(const DL_GroupParameters<T> &params, const DL_PublicKey<T> &publicKey, const Integer &r, const Integer &s) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:905:98: warning: unused parameter 'publicKey' [-Wunused-parameter]

virtual Integer RecoverPresignature(const DL_GroupParameters<T> &params, const DL_PublicKey<T> &publicKey, const Integer &r, const Integer &s) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:905:124: warning: unused parameter 'r' [-Wunused-parameter]

virtual Integer RecoverPresignature(const DL_GroupParameters<T> &params, const DL_PublicKey<T> &publicKey, const Integer &r, const Integer &s) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:905:142: warning: unused parameter 's' [-Wunused-parameter]

virtual Integer RecoverPresignature(const DL_GroupParameters<T> &params, const DL_PublicKey<T> &publicKey, const Integer &r, const Integer &s) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:929:46: warning: unused parameter 'name' [-Wunused-parameter]

virtual bool ParameterSupported(const char *name) const {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:937:46: warning: unused parameter 'name' [-Wunused-parameter]

virtual bool ParameterSupported(const char *name) const {return false;}

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:972:56: warning: unused parameter 'signatureLength' [-Wunused-parameter]

size_t MaxRecoverableLengthFromSignatureLength(size_t signatureLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:1065:56: warning: unused parameter 'rng' [-Wunused-parameter]

void RestartMessageAccumulator(RandomNumberGenerator &rng, PK_MessageAccumulatorBase &ma) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:1065:88: warning: unused parameter 'ma' [-Wunused-parameter]

void RestartMessageAccumulator(RandomNumberGenerator &rng, PK_MessageAccumulatorBase &ma) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:1086:95: warning: unused parameter 'signatureLength' [-Wunused-parameter]

void InputSignature(PK_MessageAccumulator &messageAccumulator, const byte *signature, size_t signatureLength) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:1184:48: warning: unused parameter 'rng' [-Wunused-parameter]

DecodingResult Decrypt(RandomNumberGenerator &rng, const byte *ciphertext, size_t ciphertextLength, byte *plaintext, const NameValuePairs &parameters = g_nullNameValuePairs) const

^

/Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:1392:48: warning: unused parameter 'rng' [-Wunused-parameter]

void GeneratePublicKey(RandomNumberGenerator &rng, const byte *privateKey, byte *publicKey) const

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:10:

/Users/freddy/data/freddy/libs/cryptopp562/asn.h:154:45: warning: unused parameter 'parameters' [-Wunused-parameter]

void StoreInitialize(const NameValuePairs &parameters) {assert(false);}

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:13:

/Users/freddy/data/freddy/libs/cryptopp562/emsa2.h:64:43: warning: unused parameter 'hashIdentifierLength' [-Wunused-parameter]

size_t MinRepresentativeBitLength(size_t hashIdentifierLength, size_t digestLength) const

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:4:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/osrng.h:12:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/aes.h:4:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rijndael.h:7:

/Users/freddy/data/freddy/libs/cryptopp562/seckey.h:45:52: warning: unused parameter 'keylength' [-Wunused-parameter]

static unsigned int StaticGetDefaultRounds(size_t keylength) {return DEFAULT_ROUNDS;}

^

In file included from moc_MainWindow.cpp:9:

In file included from ./../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobject.h:108:5In file included from ../CryptoKeyGenerator/main.cpp:1:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobject.h:108:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h: :expanded from macro 'QT_DO_PRAGMA'1125

:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:14:27: note: expanded from here

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

clang diagnostic ignored "-Winconsistent-missing-override"

^

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:14:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/QCoreApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcoreapplication.h:40:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobject.h:108:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:14:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/QCoreApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcoreapplication.h:42:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qeventloop.h:46:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:15:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/QCoreApplication:1:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcoreapplication.h:72:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:15:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:1:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:41:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qpalette.h:39:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qbrush.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qmatrix.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qregion.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qdatastream.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qiodevice.h:62:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:72:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from moc_MainWindow.cpp:9:

In file included from ./../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:41:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qpalette.h:39:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qbrush.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qmatrix.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qregion.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qdatastream.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qiodevice.h:62:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:72:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:2:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:41:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qpalette.h:39:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qbrush.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qmatrix.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qregion.h:42:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qdatastream.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qiodevice.h:62:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:92:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:7:

/Users/freddy/data/freddy/libs/cryptopp562/base64.h:28:48: warning: unused parameter 'parameters' [-Wunused-parameter]

void IsolatedInitialize(const NameValuePairs &parameters) {}

^

In file included from ../CryptoKeyGenerator/main.cpp:1:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:120:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from moc_MainWindow.cpp:9:

In file included from ./../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:120:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:2:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qwidget.h:120:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:34:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:1:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:38:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qtabwidget.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:1:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:54:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:1:

../CryptoKeyGenerator/MainWindow.h:12:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from moc_MainWindow.cpp:9:

In file included from ./../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:38:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qtabwidget.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:2:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:38:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qtabwidget.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:35:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:2:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcoreapplication.h:42:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qeventloop.h:46:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from moc_MainWindow.cpp:9:

In file included from ./../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:54:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:2:

In file included from ../CryptoKeyGenerator/MainWindow.h:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMainWindow:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmainwindow.h:54:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:35:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:2:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:37:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcoreapplication.h:72:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from moc_MainWindow.cpp:9:

./../CryptoKeyGenerator/MainWindow.h:12:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:2:

../CryptoKeyGenerator/MainWindow.h:12:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:35:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:2:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:45:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qguiapplication.h:39:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qinputmethod.h:49:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:26:9: warning: unused variable 'cryptopp_assert_26' [-Wunused-variable]

CRYPTOPP_COMPILE_ASSERT(sizeof(CPP_TYPENAME T::value_type) == 1);

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:54:44: note: expanded from macro 'CRYPTOPP_COMPILE_ASSERT'

#define CRYPTOPP_COMPILE_ASSERT(assertion) CRYPTOPP_COMPILE_ASSERT_INSTANCE(assertion, __LINE__)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:58:97: note: expanded from macro 'CRYPTOPP_COMPILE_ASSERT_INSTANCE'

#define CRYPTOPP_COMPILE_ASSERT_INSTANCE(assertion, instance) static CompileAssert<(assertion)> CRYPTOPP_ASSERT_JOIN(cryptopp_assert_, instance)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:60:36: note: expanded from macro 'CRYPTOPP_ASSERT_JOIN'

#define CRYPTOPP_ASSERT_JOIN(X, Y) CRYPTOPP_DO_ASSERT_JOIN(X, Y)

^

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:61:39: note: expanded from macro 'CRYPTOPP_DO_ASSERT_JOIN'

#define CRYPTOPP_DO_ASSERT_JOIN(X, Y) X##Y

^

<scratch space>:131:1: note: expanded from here

cryptopp_assert_26

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:13:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QAction:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qaction.h:55:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:35:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:793:102: note: in instantiation of function template specialization 'CryptoPP::ConstByteArrayParameter::ConstByteArrayParameter<std::basic_string<char> >' requested here

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:13:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QAction:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qaction.h:207:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qactiongroup.h:48:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

: SourceTemplate<StringStore>(attachment) {SourceInitialize(pumpAll, MakeParameters("InputBuffer", ConstByteArrayParameter(string)));}

Q_OBJECT_NO_OVERRIDE_WARNING \ ^


^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:2:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<CryptoPP::RandomNumberGenerator *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<CryptoPP::RandomNumberGenerator *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<CryptoPP::RandomNumberGenerator *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/filters.h:805:30: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<CryptoPP::RandomNumberGenerator *>' requested here

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:14:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:45:

In file included from /Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qguiapplication.h:39:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qinputmethod.h:49:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

{SourceInitialize(pumpAll, MakeParameters("RandomNumberGeneratorPointer", &rng)("RandomNumberStoreSize", length));}

^

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:2:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:45:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qguiapplication.h:67:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/main.cpp:2:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:67:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const unsigned char *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const unsigned char *>::AlgorithmParametersTemplate' requested here

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:14:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:45:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qguiapplication.h:67:5: warning: member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<const unsigned char *>' requested here


^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h/Users/freddy/data/freddy/libs/cryptopp562/basecode.h:20:22: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<const unsigned char *>' requested here:

146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

IsolatedInitialize(MakeParameters(Name::EncodingLookupArray(), alphabet)

^

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<unsigned char>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<unsigned char>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:364:10: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<unsigned char>' requested here

return operator()(name, value, m_defaultThrowIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/basecode.h:23:4: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<unsigned char>' requested here

(Name::PaddingByte(), byte(padding)));

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const int *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const int *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<const int *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/basecode.h:46:22: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<const int *>' requested here

IsolatedInitialize(MakeParameters(Name::DecodingLookupArray(), lookup)(Name::Log2Base(), log2base));

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:14:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QApplication:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qapplication.h:67:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<std::basic_istream<char> *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<std::basic_istream<char> *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<std::basic_istream<char> *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/files.h:27:20: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<std::basic_istream<char> *>' requested here

{StoreInitialize(MakeParameters(Name::InputStreamPointer(), &in));}

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const char *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const char *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<const char *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/files.h:29:20: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<const char *>' requested here

{StoreInitialize(MakeParameters(Name::InputFileName(), filename));}

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const wchar_t *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<const wchar_t *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<const wchar_t *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/files.h:33:20: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<const wchar_t *>' requested here

{StoreInitialize(MakeParameters(Name::InputFileNameWide(), filename));}

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:15:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QButtonGroup:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qbuttongroup.h:50:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:36:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/filters.h:11:

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:322:35: warning: unused variable 'p' [-Wunused-variable]

AlgorithmParametersTemplate<T>* p = new(buffer) AlgorithmParametersTemplate<T>(*this);

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:305:2: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<std::basic_ostream<char> *>::MoveInto' requested here

AlgorithmParametersTemplate(const char *name, const T &value, bool throwIfNotUsed)

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:354:45: note: in instantiation of member function 'CryptoPP::AlgorithmParametersTemplate<std::basic_ostream<char> *>::AlgorithmParametersTemplate' requested here

member_ptr<AlgorithmParametersBase> p(new AlgorithmParametersTemplate<T>(name, value, throwIfNotUsed));

^

/Users/freddy/data/freddy/libs/cryptopp562/algparam.h:388:9: note: in instantiation of function template specialization 'CryptoPP::AlgorithmParameters::operator()<std::basic_ostream<char> *>' requested here

return AlgorithmParameters()(name, value, throwIfNotUsed);

^

/Users/freddy/data/freddy/libs/cryptopp562/files.h:90:23: note: in instantiation of function template specialization 'CryptoPP::MakeParameters<std::basic_ostream<char> *>' requested here

{IsolatedInitialize(MakeParameters(Name::OutputStreamPointer(), &out));}

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:16:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qlayout.h:56:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:7:

/Users/freddy/data/freddy/libs/cryptopp562/misc.h:548:20: warning: unused function 'StringNarrow' [-Wunused-function]

static std::string StringNarrow(const wchar_t *str, bool throwOnError = true)

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:16:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qlayout.h:162:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qgridlayout.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:16:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:16:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h:108:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: 6 warnings generated.

11 warningsexpanded from macro 'QT_WARNING_DISABLE_CLANG' generated.


# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:16:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHBoxLayout:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qboxlayout.h:121:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractscrollarea.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qframe.h:47:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractscrollarea.h:50:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qabstractitemmodel.h:157:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qabstractitemmodel.h:357:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:10:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:38:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qabstractitemmodel.h:383:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

143 warnings generated.

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:39:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qitemselectionmodel.h:145:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:38:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qvalidator.h:53:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:38:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qvalidator.h:84:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:38:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qvalidator.h:119:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:38:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qvalidator.h:166:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:38:

/Applications/Qt/5.5/clang_64/lib/QtGui.framework/Headers/qvalidator.h:196:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:38:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractspinbox.h:52:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:41:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qslider.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractslider.h:46:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:41:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qslider.h:48:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:11:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:42:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyle.h:59:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:3:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:43:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qtabbar.h:50:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstyleoption.h:45:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qrubberband.h:49:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:40:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemdelegate.h:54:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractitemview.h:54:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:17:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QHeaderView:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qheaderview.h:49:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:18:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QLabel:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qlabel.h:46:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:19:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QLineEdit:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qlineedit.h:59:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:21:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMenuBar:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmenubar.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmenu.h:61:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:21:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMenuBar:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmenubar.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:22:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QPushButton:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qpushbutton.h:37:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qabstractbutton.h:49:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:4:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:22:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QPushButton:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qpushbutton.h:48:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:6:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:23:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QStatusBar:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qstatusbar.h:48:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:3:

In file included from ./ui_MainWindow.h:24:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QToolBar:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qtoolbar.h:53:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QFileDialog:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qdir.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qfileinfo.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qfile.h:37:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qfiledevice.h:47:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QFileDialog:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h:37:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qdir.h:38:

In file included from /Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qfileinfo.h:37:

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qfile.h:53:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QFileDialog:1:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h:40:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qdialog.h:47:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:4:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QFileDialog:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qfiledialog.h:57:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

In file included from ../CryptoKeyGenerator/MainWindow.cpp:5:

In file included from /Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/QMessageBox:1:

/Applications/Qt/5.5/clang_64/lib/QtWidgets.framework/Headers/qmessagebox.h:51:5: warning: unknown warning group '-Winconsistent-missing-override', ignored [-Wunknown-pragmas]

Q_OBJECT

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:156:5: note: expanded from macro 'Q_OBJECT'

Q_OBJECT_NO_OVERRIDE_WARNING \

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qobjectdefs.h:146:45: note: expanded from macro 'Q_OBJECT_NO_OVERRIDE_WARNING'

# define Q_OBJECT_NO_OVERRIDE_WARNING QT_WARNING_DISABLE_CLANG("-Winconsistent-missing-override")

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1125:49: note: expanded from macro 'QT_WARNING_DISABLE_CLANG'

# define QT_WARNING_DISABLE_CLANG(text) QT_DO_PRAGMA(clang diagnostic ignored text)

^

/Applications/Qt/5.5/clang_64/lib/QtCore.framework/Headers/qcompilerdetection.h:1096:49: note: expanded from macro 'QT_DO_PRAGMA'

#define QT_DO_PRAGMA(text) _Pragma(#text)

^

<scratch space>:7:27: note: expanded from here

clang diagnostic ignored "-Winconsistent-missing-override"

^

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang++ -headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.10.sdk -mmacosx-version-min=10.7 -Wl,-rpath,/Applications/Qt/5.5/clang_64/lib -o CryptoKeyGenerator.app/Contents/MacOS/CryptoKeyGenerator main.o MainWindow.o KeyGenerator.o moc_MainWindow.o -F/Applications/Qt/5.5/clang_64/lib /Users/freddy/data/freddy/libs/cryptopp562/libcryptopp.a -framework QtWidgets -framework QtGui -framework QtCore -framework DiskArbitration -framework IOKit -framework OpenGL -framework AGL

52 warnings generated.

Undefined symbols for architecture x86_64:

"CryptoPP::RandomPool::GenerateIntoBufferedTransformation(CryptoPP::BufferedTransformation&, std::string const&, unsigned long long)", referenced from:

vtable for CryptoPP::AutoSeededRandomPool in KeyGenerator.o

"CryptoPP::BufferedTransformation::ChannelPut2(std::string const&, unsigned char const*, unsigned long, int, bool)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::BufferedTransformation::ChannelFlush(std::string const&, bool, int, bool)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::BufferedTransformation::SetRetrievalChannel(std::string const&)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::BufferedTransformation::ChannelCreatePutSpace(std::string const&, unsigned long&)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::BufferedTransformation::ChannelPutModifiable2(std::string const&, unsigned char*, unsigned long, int, bool)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::BufferedTransformation::ChannelMessageSeriesEnd(std::string const&, int, bool)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Sink in KeyGenerator.o

"CryptoPP::Filter::TransferTo2(CryptoPP::BufferedTransformation&, unsigned long long&, std::string const&, bool)", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

"CryptoPP::Filter::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::string const&, bool) const", referenced from:

vtable for CryptoPP::SimpleProxyFilter in KeyGenerator.o

vtable for CryptoPP::Unflushable<CryptoPP::Filter> in KeyGenerator.o

vtable for CryptoPP::Bufferless<CryptoPP::Filter> in KeyGenerator.o

"std::__1::__vector_base_common<true>::__throw_length_error() const", referenced from:

std::__1::enable_if<(__is_forward_iterator<CryptoPP::Integer*>::value) && (is_constructible<CryptoPP::Integer, std::__1::iterator_traits<CryptoPP::Integer*>::reference>::value), void>::type std::__1::vector<CryptoPP::Integer, std::__1::allocator<CryptoPP::Integer> >::assign<CryptoPP::Integer*>(CryptoPP::Integer*, CryptoPP::Integer*) in libcryptopp.a(dll.o)

std::__1::enable_if<(__is_forward_iterator<CryptoPP::EC2NPoint*>::value) && (is_constructible<CryptoPP::EC2NPoint, std::__1::iterator_traits<CryptoPP::EC2NPoint*>::reference>::value), void>::type std::__1::vector<CryptoPP::EC2NPoint, std::__1::allocator<CryptoPP::EC2NPoint> >::assign<CryptoPP::EC2NPoint*>(CryptoPP::EC2NPoint*, CryptoPP::EC2NPoint*) in libcryptopp.a(dll.o)

std::__1::enable_if<(__is_forward_iterator<CryptoPP::ECPPoint*>::value) && (is_constructible<CryptoPP::ECPPoint, std::__1::iterator_traits<CryptoPP::ECPPoint*>::reference>::value), void>::type std::__1::vector<CryptoPP::ECPPoint, std::__1::allocator<CryptoPP::ECPPoint> >::assign<CryptoPP::ECPPoint*>(CryptoPP::ECPPoint*, CryptoPP::ECPPoint*) in libcryptopp.a(dll.o)

void std::__1::vector<CryptoPP::BaseAndExponent<CryptoPP::ECPPoint, CryptoPP::Integer>, std::__1::allocator<CryptoPP::BaseAndExponent<CryptoPP::ECPPoint, CryptoPP::Integer> > >::__push_back_slow_path<CryptoPP::BaseAndExponent<CryptoPP::ECPPoint, CryptoPP::Integer> const>(CryptoPP::BaseAndExponent<CryptoPP::ECPPoint, CryptoPP::Integer> const&) in libcryptopp.a(dll.o)

void std::__1::vector<CryptoPP::ECPPoint, std::__1::allocator<CryptoPP::ECPPoint> >::__push_back_slow_path<CryptoPP::ECPPoint const>(CryptoPP::ECPPoint const&) in libcryptopp.a(dll.o)

std::__1::vector<CryptoPP::ECPPoint, std::__1::allocator<CryptoPP::ECPPoint> >::__append(unsigned long) in libcryptopp.a(dll.o)

std::__1::vector<CryptoPP::ECPPoint, std::__1::allocator<CryptoPP::ECPPoint> >::__append(unsigned long, CryptoPP::ECPPoint const&) in libcryptopp.a(dll.o)

...

"std::__1::locale::has_facet(std::__1::locale::id&) const", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

"std::__1::locale::use_facet(std::__1::locale::id&) const", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::imbue(std::__1::locale const&) in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::ios_base::getloc() const", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__init(char const*, unsigned long)", referenced from:

CryptoPP::Clonable::Clone() const in libcryptopp.a(randpool.o)

CryptoPP::Algorithm::AlgorithmName() const in libcryptopp.a(randpool.o)

CryptoPP::AlgorithmImpl<CryptoPP::SimpleKeyingInterfaceImpl<CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info>, CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info> >, CryptoPP::SimpleKeyingInterfaceImpl<CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info>, CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info> > >::AlgorithmName() const in libcryptopp.a(randpool.o)

non-virtual thunk to CryptoPP::AlgorithmImpl<CryptoPP::SimpleKeyingInterfaceImpl<CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info>, CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info> >, CryptoPP::SimpleKeyingInterfaceImpl<CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info>, CryptoPP::TwoBases<CryptoPP::BlockCipher, CryptoPP::Rijndael_Info> > >::AlgorithmName() const in libcryptopp.a(randpool.o)

CryptoPP::AlgorithmImpl<CryptoPP::IteratedHash<unsigned int, CryptoPP::EnumToType<CryptoPP::ByteOrder, 1>, 64u, CryptoPP::HashTransformation>, CryptoPP::SHA256>::AlgorithmName() const in libcryptopp.a(randpool.o)

CryptoPP::FilterWithBufferedInput::FilterWithBufferedInput(unsigned long, unsigned long, unsigned long, CryptoPP::BufferedTransformation*) in libcryptopp.a(filters.o)

CryptoPP::FilterWithBufferedInput::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(filters.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__init(char const*, unsigned long, unsigned long)", referenced from:

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(randpool.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(char const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(char const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(cryptlib.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__init(unsigned long, char)", referenced from:

std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> > std::__1::__pad_and_output<char, std::__1::char_traits<char> >(std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> >, char const*, char const*, char const*, std::__1::ios_base&, char) in libcryptopp.a(integer.o)

CryptoPP::StringNarrow(wchar_t const*, bool) in libcryptopp.a(files.o)

std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> > std::__1::__pad_and_output<char, std::__1::char_traits<char> >(std::__1::ostreambuf_iterator<char, std::__1::char_traits<char> >, char const*, char const*, char const*, std::__1::ios_base&, char) in libcryptopp.a(gf2n.o)

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::append(char const*)", referenced from:

CryptoPP::AlgorithmParametersBase::GetVoidValue(char const*, std::type_info const&, void*) const in libcryptopp.a(algparam.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters<CryptoPP::Integer>, CryptoPP::DL_GroupParameters<CryptoPP::Integer> >& CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters<CryptoPP::Integer>, CryptoPP::DL_GroupParameters<CryptoPP::Integer> >::operator()<CryptoPP::Integer>(char const*, CryptoPP::Integer const& (CryptoPP::DL_GroupParameters<CryptoPP::Integer>::*)() const) in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation, CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer> >, CryptoPP::DL_GroupParameters_IntegerBased>::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP>, CryptoPP::DL_GroupParameters<CryptoPP::ECPPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP>, CryptoPP::DL_GroupParameters<CryptoPP::ECPPoint> >& CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP>, CryptoPP::DL_GroupParameters<CryptoPP::ECPPoint> >::operator()<CryptoPP::ECP>(char const*, CryptoPP::ECP const& (CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP>::*)() const) in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N>, CryptoPP::DL_GroupParameters<CryptoPP::EC2NPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N>, CryptoPP::DL_GroupParameters<CryptoPP::EC2NPoint> >& CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N>, CryptoPP::DL_GroupParameters<CryptoPP::EC2NPoint> >::operator()<CryptoPP::EC2N>(char const*, CryptoPP::EC2N const& (CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N>::*)() const) in libcryptopp.a(dll.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::append(char const*, unsigned long)", referenced from:

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(randpool.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(char const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(filters.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(char const*, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&) in libcryptopp.a(cryptlib.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::assign(char const*, unsigned long)", referenced from:

CryptoPP::BERDecodeTextString(CryptoPP::BufferedTransformation&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&, unsigned char) in libcryptopp.a(asn.o)

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::reserve(unsigned long)", referenced from:

CryptoPP::StringSinkTemplate<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > >::Put2(unsigned char const*, unsigned long, int, bool) in libcryptopp.a(dll.o)

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::__grow_by(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long)", referenced from:

std::__1::enable_if<__is_forward_iterator<char const*>::value, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >&>::type std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::append<char const*>(char const*, char const*) in libcryptopp.a(dll.o)

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::push_back(char)", referenced from:

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_IntegerBasedImpl<CryptoPP::ModExpPrecomputation, CryptoPP::DL_FixedBasePrecomputationImpl<CryptoPP::Integer> >, CryptoPP::DL_GroupParameters_IntegerBased>::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP>, CryptoPP::DL_GroupParameters<CryptoPP::ECPPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N>, CryptoPP::DL_GroupParameters<CryptoPP::EC2NPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_PublicKeyImpl<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP> >, CryptoPP::DL_PublicKey<CryptoPP::ECPPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_PublicKeyImpl<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N> >, CryptoPP::DL_PublicKey<CryptoPP::EC2NPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_PrivateKeyImpl<CryptoPP::DL_GroupParameters_EC<CryptoPP::ECP> >, CryptoPP::DL_PrivateKey<CryptoPP::ECPPoint> >::Assignable() in libcryptopp.a(dll.o)

CryptoPP::GetValueHelperClass<CryptoPP::DL_PrivateKeyImpl<CryptoPP::DL_GroupParameters_EC<CryptoPP::EC2N> >, CryptoPP::DL_PrivateKey<CryptoPP::EC2NPoint> >::Assignable() in libcryptopp.a(dll.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::basic_string(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)", referenced from:

CryptoPP::Clonable::Clone() const in libcryptopp.a(randpool.o)

CryptoPP::SimpleKeyingInterface::Resynchronize(unsigned char const*, int) in libcryptopp.a(randpool.o)

CryptoPP::FilterWithBufferedInput::FilterWithBufferedInput(unsigned long, unsigned long, unsigned long, CryptoPP::BufferedTransformation*) in libcryptopp.a(filters.o)

CryptoPP::FilterWithBufferedInput::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(filters.o)

CryptoPP::ArraySink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(filters.o)

CryptoPP::StreamTransformationFilter::StreamTransformationFilter(CryptoPP::StreamTransformation&, CryptoPP::BufferedTransformation*, CryptoPP::BlockPaddingSchemeDef::BlockPaddingScheme, bool) in libcryptopp.a(filters.o)

CryptoPP::StreamTransformationFilter::InitializeDerivedAndReturnNewSizes(CryptoPP::NameValuePairs const&, unsigned long&, unsigned long&, unsigned long&) in libcryptopp.a(filters.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::~basic_string()", referenced from:

CryptoPP::Clonable::Clone() const in libcryptopp.a(randpool.o)

CryptoPP::SimpleKeyingInterface::Resynchronize(unsigned char const*, int) in libcryptopp.a(randpool.o)

CryptoPP::Exception::~Exception() in libcryptopp.a(randpool.o)

CryptoPP::Exception::~Exception() in libcryptopp.a(randpool.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > std::__1::operator+<char, std::__1::char_traits<char>, std::__1::allocator<char> >(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, char const*) in libcryptopp.a(randpool.o)

CryptoPP::NotImplemented::~NotImplemented() in libcryptopp.a(randpool.o)

CryptoPP::NotImplemented::~NotImplemented() in libcryptopp.a(randpool.o)

...

"std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::operator=(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&)", referenced from:

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > CryptoPP::IntToString<int>(int, unsigned int) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > CryptoPP::IntToString<unsigned int>(unsigned int, unsigned int) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > CryptoPP::IntToString<unsigned long long>(unsigned long long, unsigned int) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > CryptoPP::IntToString<unsigned long>(unsigned long, unsigned int) in libcryptopp.a(cryptlib.o)

std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > CryptoPP::IntToString<int>(int, unsigned int) in libcryptopp.a(osrng.o)

CryptoPP::FileStore::StoreInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

CryptoPP::FileSink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

...

"std::__1::basic_istream<char, std::__1::char_traits<char> >::peek()", referenced from:

CryptoPP::FileStore::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) const in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::read(char*, long)", referenced from:

CryptoPP::operator>>(std::__1::basic_istream<char, std::__1::char_traits<char> >&, CryptoPP::Integer&) in libcryptopp.a(integer.o)

CryptoPP::FileStore::TransferTo2(CryptoPP::BufferedTransformation&, unsigned long long&, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::seekg(std::__1::fpos<__mbstate_t>)", referenced from:

CryptoPP::FileStore::MaxRetrievable() const in libcryptopp.a(files.o)

CryptoPP::FileStore::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) const in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::seekg(long long, std::__1::ios_base::seekdir)", referenced from:

CryptoPP::FileStore::MaxRetrievable() const in libcryptopp.a(files.o)

CryptoPP::FileStore::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) const in libcryptopp.a(files.o)

CryptoPP::FileStore::Skip(unsigned long long) in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::tellg()", referenced from:

CryptoPP::FileStore::MaxRetrievable() const in libcryptopp.a(files.o)

CryptoPP::FileStore::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) const in libcryptopp.a(files.o)

CryptoPP::FileStore::Skip(unsigned long long) in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::sentry::sentry(std::__1::basic_istream<char, std::__1::char_traits<char> >&, bool)", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::putback(char)", referenced from:

CryptoPP::operator>>(std::__1::basic_istream<char, std::__1::char_traits<char> >&, CryptoPP::Integer&) in libcryptopp.a(integer.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::~basic_istream()", referenced from:

construction vtable for std::__1::basic_istream<char, std::__1::char_traits<char> >-in-std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::~basic_istream()", referenced from:

construction vtable for std::__1::basic_istream<char, std::__1::char_traits<char> >-in-std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_istream<char, std::__1::char_traits<char> >::~basic_istream()", referenced from:

CryptoPP::FileStore::StoreInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

std::__1::basic_ifstream<char, std::__1::char_traits<char> >::~basic_ifstream() in libcryptopp.a(files.o)

std::__1::basic_ifstream<char, std::__1::char_traits<char> >::~basic_ifstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ifstream<char, std::__1::char_traits<char> >::~basic_ifstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ifstream<char, std::__1::char_traits<char> >::~basic_ifstream() in libcryptopp.a(files.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::flush()", referenced from:

CryptoPP::FileSink::IsolatedFlush(bool, bool) in libcryptopp.a(files.o)

CryptoPP::FileSink::Put2(unsigned char const*, unsigned long, int, bool) in libcryptopp.a(files.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::write(char const*, long)", referenced from:

CryptoPP::FileSink::Put2(unsigned char const*, unsigned long, int, bool) in libcryptopp.a(files.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::sentry::sentry(std::__1::basic_ostream<char, std::__1::char_traits<char> >&)", referenced from:

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::sentry::~sentry()", referenced from:

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::~basic_ostream()", referenced from:

construction vtable for std::__1::basic_ostream<char, std::__1::char_traits<char> >-in-std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::~basic_ostream()", referenced from:

construction vtable for std::__1::basic_ostream<char, std::__1::char_traits<char> >-in-std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_ostream<char, std::__1::char_traits<char> >::~basic_ostream()", referenced from:

CryptoPP::FileSink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::uflow()", referenced from:

vtable for std::__1::basic_filebuf<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::xsgetn(char*, long)", referenced from:

vtable for std::__1::basic_filebuf<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::xsputn(char const*, long)", referenced from:

vtable for std::__1::basic_filebuf<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::showmanyc()", referenced from:

vtable for std::__1::basic_filebuf<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::basic_streambuf()", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

"std::__1::basic_streambuf<char, std::__1::char_traits<char> >::~basic_streambuf()", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::~basic_filebuf() in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

"std::__1::ctype<char>::id", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::locale::locale(std::__1::locale const&)", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

"std::__1::locale::~locale()", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::codecvt<char, char, __mbstate_t>::id", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::imbue(std::__1::locale const&) in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::basic_filebuf() in libcryptopp.a(files.o)

"std::__1::ios_base::__set_badbit_and_consider_rethrow()", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::ios_base::init(void*)", referenced from:

CryptoPP::FileStore::StoreInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

CryptoPP::FileSink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

"std::__1::ios_base::clear(unsigned int)", referenced from:

std::__1::basic_istream<char, std::__1::char_traits<char> >& std::__1::ws<char, std::__1::char_traits<char> >(std::__1::basic_istream<char, std::__1::char_traits<char> >&) in libcryptopp.a(integer.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(integer.o)

CryptoPP::FileStore::StoreInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

CryptoPP::FileStore::CopyRangeTo2(CryptoPP::BufferedTransformation&, unsigned long long&, unsigned long long, std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, bool) const in libcryptopp.a(files.o)

CryptoPP::FileSink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

std::__1::basic_ostream<char, std::__1::char_traits<char> >& std::__1::__put_character_sequence<char, std::__1::char_traits<char> >(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, char const*, unsigned long) in libcryptopp.a(gf2n.o)

"std::__1::basic_ios<char, std::__1::char_traits<char> >::~basic_ios()", referenced from:

CryptoPP::FileStore::StoreInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

CryptoPP::FileSink::IsolatedInitialize(CryptoPP::NameValuePairs const&) in libcryptopp.a(files.o)

std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

non-virtual thunk to std::__1::basic_ofstream<char, std::__1::char_traits<char> >::~basic_ofstream() in libcryptopp.a(files.o)

std::__1::basic_ifstream<char, std::__1::char_traits<char> >::~basic_ifstream() in libcryptopp.a(files.o)

...

"std::bad_cast::bad_cast()", referenced from:

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::seekoff(long long, std::__1::ios_base::seekdir, unsigned int) in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::sync() in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::underflow() in libcryptopp.a(files.o)

std::__1::basic_filebuf<char, std::__1::char_traits<char> >::overflow(int) in libcryptopp.a(files.o)

"std::bad_alloc::bad_alloc()", referenced from:

CryptoPP::CallNewHandler() in libcryptopp.a(misc.o)

CryptoPP::AlignedAllocate(unsigned long) in libcryptopp.a(misc.o)

CryptoPP::UnalignedAllocate(unsigned long) in libcryptopp.a(misc.o)

"typeinfo for std::__1::basic_istream<char, std::__1::char_traits<char> >", referenced from:

construction vtable for std::__1::basic_istream<char, std::__1::char_traits<char> >-in-std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

typeinfo for std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

typeinfo for std::__1::basic_istream<char, std::__1::char_traits<char> >* in libcryptopp.a(files.o)

"typeinfo for std::__1::basic_ostream<char, std::__1::char_traits<char> >", referenced from:

construction vtable for std::__1::basic_ostream<char, std::__1::char_traits<char> >-in-std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

typeinfo for std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

typeinfo for std::__1::basic_ostream<char, std::__1::char_traits<char> >* in libcryptopp.a(files.o)

"typeinfo for std::__1::basic_streambuf<char, std::__1::char_traits<char> >", referenced from:

typeinfo for std::__1::basic_filebuf<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"non-virtual thunk to std::__1::basic_istream<char, std::__1::char_traits<char> >::~basic_istream()", referenced from:

construction vtable for std::__1::basic_istream<char, std::__1::char_traits<char> >-in-std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"non-virtual thunk to std::__1::basic_istream<char, std::__1::char_traits<char> >::~basic_istream()", referenced from:

construction vtable for std::__1::basic_istream<char, std::__1::char_traits<char> >-in-std::__1::basic_ifstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"non-virtual thunk to std::__1::basic_ostream<char, std::__1::char_traits<char> >::~basic_ostream()", referenced from:

construction vtable for std::__1::basic_ostream<char, std::__1::char_traits<char> >-in-std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

"non-virtual thunk to std::__1::basic_ostream<char, std::__1::char_traits<char> >::~basic_ostream()", referenced from:

construction vtable for std::__1::basic_ostream<char, std::__1::char_traits<char> >-in-std::__1::basic_ofstream<char, std::__1::char_traits<char> > in libcryptopp.a(files.o)

ld: symbol(s) not found for architecture x86_64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

make: *** [CryptoKeyGenerator.app/Contents/MacOS/CryptoKeyGenerator] Error 1

01:42:26: The process "/usr/bin/make" exited with code 2.

Error while building/deploying project CryptoKeyGenerator (kit: Desktop Qt 5.5.0 clang 64bit)

When executing step "Make"


How can I fix this ??


regards

Jeffrey Walton

unread,
Aug 10, 2015, 3:02:32 AM8/10/15
to Crypto++ Users

...

In file included from ../CryptoKeyGenerator/KeyGenerator.cpp:3:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/rsa.h:9:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/pubkey.h:35:

In file included from /Users/freddy/data/freddy/libs/cryptopp562/modarith.h:6:

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:402:41: warning: unused parameter 'iv' [-Wunused-parameter]

virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");} 


Well, I did not see an error. Could you explicitly state what the error is?

We are working on the warning cleanup now. The cleanup may be available in 5.6.3. It will be available in 5.7.

In the interim, open GNUmakefile and add -Wno-unused-parameter to CXXFLAGS. Lots of unused parameters is an artifact of C++ and interface programming.

Jeff

Jeffrey Walton

unread,
Aug 10, 2015, 3:29:25 AM8/10/15
to Crypto++ Users

Uri - you do a lot on OS X. Are you seeing this kind of pollution in the output of make?

Jeff

Freddy Martinez

unread,
Aug 10, 2015, 8:26:24 AM8/10/15
to Jeffrey Walton, Crypto++ Users
Hi Jeffrey and thanks for answer… my Link error is this:

Cryptopp give undefined symbol for everywhere… is like my program is not linking against libcryptopp.a

regards


=============================================
"El tamaño de tus logros depende del tamaño de tus metas." 
C++ and Qt Senior Developer
Lic. Computer Science
Buenos Aires, Argentina

--
--
You received this message because you are subscribed to the "Crypto++ Users" Google Group.
To unsubscribe, send an email to cryptopp-user...@googlegroups.com.
More information about Crypto++ and this group is available at http://www.cryptopp.com.
---
You received this message because you are subscribed to a topic in the Google Groups "Crypto++ Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cryptopp-users/3oPB5uFGBIg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cryptopp-user...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Mobile Mouse

unread,
Aug 10, 2015, 8:26:50 AM8/10/15
to Jeffrey Walton, Crypto++ Users
I'll need to double-check, but I don't think so. I'm using both clang(from Xcode) and GCC-5.2. 

Sent from my iPad
--
--
You received this message because you are subscribed to the "Crypto++ Users" Google Group.
To unsubscribe, send an email to cryptopp-user...@googlegroups.com.
More information about Crypto++ and this group is available at http://www.cryptopp.com.
---
You received this message because you are subscribed to the Google Groups "Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cryptopp-user...@googlegroups.com.

Mobile Mouse

unread,
Aug 10, 2015, 8:29:05 AM8/10/15
to Freddy Martinez, Jeffrey Walton, Crypto++ Users
This looks like a mismatch between the compiler (probably GCC) and the link library (probably libc++.dylib). 

I can add that I'm linking smoothly on Yosemite with either compiler. 

Sent from my iPad
You received this message because you are subscribed to the Google Groups "Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cryptopp-user...@googlegroups.com.

Freddy Martinez

unread,
Aug 10, 2015, 8:29:35 AM8/10/15
to Mobile Mouse, Crypto++ Users
I’m no using XCode, I’m using Qt Creator…. regards



=============================================
"El tamaño de tus logros depende del tamaño de tus metas." 
C++ and Qt Senior Developer
Lic. Computer Science
Buenos Aires, Argentina

You received this message because you are subscribed to a topic in the Google Groups "Crypto++ Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/cryptopp-users/3oPB5uFGBIg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to cryptopp-user...@googlegroups.com.

Freddy Martinez

unread,
Aug 10, 2015, 8:31:04 AM8/10/15
to Mobile Mouse, Jeffrey Walton, Crypto++ Users
And what can I do to fix this problem ?? because we are using cryptopp in our system, and in Linux and Windows work fine !!!

In OS X Yosemite doesn’t !!!

regards


=============================================
"El tamaño de tus logros depende del tamaño de tus metas." 
C++ and Qt Senior Developer
Lic. Computer Science
Buenos Aires, Argentina

Mobile Mouse

unread,
Aug 10, 2015, 8:43:24 AM8/10/15
to Freddy Martinez, Jeffrey Walton, Crypto++ Users
1. I assure you that it works fine on Mavericks and Yosemite. 

2. You need to figure out what compiler your QtCreator is using (I suspect it's clang from Xcode - note that if you didn't use Xcode you'd probably be unable to compile anything). Then you probably need to build cryptopp with compiler flags like "-stdlib=libc++" and adding "-lc++" to the linker. And probably invoke the build like "CXX=clang make"

3. Jeff, I thought the current GNUmakefile is already doing that? Should we refer Freddy to the current GitHub repo, or ask that he waits till 5.6.3 is released?

Sent from my iPad

David Irvine

unread,
Aug 10, 2015, 8:45:06 AM8/10/15
to Freddy Martinez, Mobile Mouse, Jeffrey Walton, Crypto++ Users
To me this looks like you are mixing c++ (prob 03) and c++11 libraries. You need to make sure the libraries you are linking are all the same. 
--

David Irvine
twitter: @metaquestions

David Irvine

unread,
Aug 10, 2015, 8:49:09 AM8/10/15
to Freddy Martinez, Mobile Mouse, Jeffrey Walton, Crypto++ Users

On Mon, Aug 10, 2015 at 1:44 PM, David Irvine <david....@maidsafe.net> wrote:
To me this looks like you are mixing c++ (prob 03) and c++11 libraries. You need to make sure the libraries you are linking are all the same. 

I should add more detail (sorry), this error is what you get if you try and link a lib built without c++11 and one with. So if you built cryptopp without std=c++11 and your project is using c++11 for compiling this is the error you will see. so you need to align the flags used to build cryptopp and your project. 

Freddy Martinez Garcia

unread,
Aug 10, 2015, 8:55:41 AM8/10/15
to Mobile Mouse, Crypto++ Users, Jeffrey Walton

Well.. i m usinng clang as compiler... i m going to try with this flags and i ll comming back to you to give you a feedback

Regards...

Jeffrey Walton

unread,
Aug 10, 2015, 9:14:35 AM8/10/15
to Freddy Martinez, Mobile Mouse, Crypto++ Users
On Mon, Aug 10, 2015 at 8:31 AM, Freddy Martinez <freddy...@gmail.com> wrote:
> And what can I do to fix this problem ?? because we are using cryptopp in
> our system, and in Linux and Windows work fine !!!
>
> In OS X Yosemite doesn’t !!!

The __1 is the inline namespace for LLVM's libc++. GNU's libstdc++ lacks it.

You should compile everything with either GNU's libstdc++, or
everything with libc++. If you are working from Xcode, then I think
LLVM's libc++ is used by default. I'd recommend the LLVM runtime since
the GNU runtime is ancient and anemic.

The command line switch you are looking for is either -stdlib=libc++
(for LLVM runtime) or -stdlib=libstdc++ (for GNU runtime).

And as David pointed out, you can also use -std=c++03 or -std=c++11.
They should probably match, too.

Jeff

Mobile Mouse

unread,
Aug 10, 2015, 9:42:58 AM8/10/15
to Jeffrey Walton, Crypto++ Users
On Aug 10, 2015, at 3:29 , Jeffrey Walton <nolo...@gmail.com> wrote:
On Monday, August 10, 2015 at 3:02:32 AM UTC-4, Jeffrey Walton wrote:

...

/Users/freddy/data/freddy/libs/cryptopp562/cryptlib.h:402:41: warning: unused parameter 'iv' [-Wunused-parameter]

virtual void Resynchronize(const byte *iv, int ivLength=-1) {throw NotImplemented(GetAlgorithm().AlgorithmName() + ": this object doesn't support resynchronization");} 

Uri - you do a lot on OS X. Are you seeing this kind of pollution in the output of make?

I’m on the GitHub code. I recompiled everything with clang++ (current Xcode) and g++ (v5.2 from Macports).

This is the only warning I got from clang:

WARNING: CRYPTOPP_NO_UNALIGNED_DATA_ACCESS is not defined in config.h

This is all I’m getting from g++:

fipstest.cpp:37:33: warning: unknown option after '#pragma GCC diagnostic' kind [-Wpragmas]
 # pragma GCC diagnostic ignored "-Wunneeded-internal-declaration”

Common to both compilers during cryptest.exe linking:

libtool: file: algebra.o has no symbols
libtool: file: eccrypto.o has no symbols
libtool: file: eprecomp.o has no symbols
libtool: file: simple.o has no symbols
libtool: file: strciphr.o has no symbols
ranlib libcryptopp.a
ranlib: file: libcryptopp.a(algebra.o) has no symbols
ranlib: file: libcryptopp.a(eccrypto.o) has no symbols
ranlib: file: libcryptopp.a(eprecomp.o) has no symbols
ranlib: file: libcryptopp.a(simple.o) has no symbols
ranlib: file: libcryptopp.a(strciphr.o) has no symbols

Sample of my g++ compile line (similar for clang++):

g++ -maes -mpclmul -msse2 -msse3 -mssse3 -msse4.2 -mtune=native -Wa,-q -DNDEBUG -O3 -fPIC -march=native -DCRYPTOPP_DISABLE_ASM -Wall -Wextra -Wno-type-limits -Wno-unknown-pragmas -pipe -c adhoc.cpp
Reply all
Reply to author
Forward
0 new messages