feat(CI/Codestyle): added codestyle check (#3668)

This commit is contained in:
Kargatum
2021-01-09 17:59:50 +07:00
committed by GitHub
parent 57aa46244d
commit ea93a5c1a1
400 changed files with 238 additions and 748 deletions

View File

@@ -58,4 +58,3 @@ void AuthCrypt::EncryptSend(uint8* data, size_t len)
_serverEncrypt.UpdateData(len, data);
}

View File

@@ -4,7 +4,6 @@
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
*/
#include "Cryptography/BigNumber.h"
#include <openssl/bn.h>
#include <openssl/crypto.h>
@@ -186,4 +185,3 @@ char* BigNumber::AsDecStr() const
{
return BN_bn2dec(_bn);
}

View File

@@ -88,4 +88,3 @@ private:
};
#endif

View File

@@ -32,4 +32,3 @@ private:
uint8 m_digest[SHA_DIGEST_LENGTH];
};
#endif

View File

@@ -53,4 +53,3 @@ void SHA1Hash::Finalize(void)
{
SHA1_Final(mDigest, &mC);
}

View File

@@ -35,4 +35,3 @@ private:
uint8 mDigest[SHA_DIGEST_LENGTH];
};
#endif