diff options
Diffstat (limited to 'src/shared')
101 files changed, 101 insertions, 0 deletions
diff --git a/src/shared/Auth/AuthCrypt.cpp b/src/shared/Auth/AuthCrypt.cpp index d45c56817ba..7cbb7f13648 100644 --- a/src/shared/Auth/AuthCrypt.cpp +++ b/src/shared/Auth/AuthCrypt.cpp @@ -81,3 +81,4 @@ void AuthCrypt::GenerateKey(uint8 *key, BigNumber *bn) hash.Finalize(); memcpy(key, hash.GetDigest(), SHA_DIGEST_LENGTH); } + diff --git a/src/shared/Auth/AuthCrypt.h b/src/shared/Auth/AuthCrypt.h index b007e8c3d0e..020f8bcdc96 100644 --- a/src/shared/Auth/AuthCrypt.h +++ b/src/shared/Auth/AuthCrypt.h @@ -52,3 +52,4 @@ class AuthCrypt bool _initialized; }; #endif + diff --git a/src/shared/Auth/BigNumber.cpp b/src/shared/Auth/BigNumber.cpp index 2baba88e9e0..da31da3a522 100644 --- a/src/shared/Auth/BigNumber.cpp +++ b/src/shared/Auth/BigNumber.cpp @@ -207,3 +207,4 @@ const char *BigNumber::AsDecStr() { return BN_bn2dec(_bn); } + diff --git a/src/shared/Auth/BigNumber.h b/src/shared/Auth/BigNumber.h index 37979bdd76f..df25e4f934d 100644 --- a/src/shared/Auth/BigNumber.h +++ b/src/shared/Auth/BigNumber.h @@ -94,3 +94,4 @@ class BigNumber uint8 *_array; }; #endif + diff --git a/src/shared/Auth/Hmac.cpp b/src/shared/Auth/Hmac.cpp index 91c065d3640..615edd26ca5 100644 --- a/src/shared/Auth/Hmac.cpp +++ b/src/shared/Auth/Hmac.cpp @@ -56,3 +56,4 @@ void HmacHash::Finalize() HMAC_Final(&m_ctx, m_digest, &length); ASSERT(length == SHA_DIGEST_LENGTH) } + diff --git a/src/shared/Auth/Hmac.h b/src/shared/Auth/Hmac.h index 1c19ec2238d..5b7c4040f13 100644 --- a/src/shared/Auth/Hmac.h +++ b/src/shared/Auth/Hmac.h @@ -46,3 +46,4 @@ class HmacHash uint8 m_digest[SHA_DIGEST_LENGTH]; }; #endif + diff --git a/src/shared/Auth/Sha1.cpp b/src/shared/Auth/Sha1.cpp index 73fcf90bfa8..90334543b82 100644 --- a/src/shared/Auth/Sha1.cpp +++ b/src/shared/Auth/Sha1.cpp @@ -65,3 +65,4 @@ void Sha1Hash::Finalize(void) { SHA1_Final(mDigest, &mC); } + diff --git a/src/shared/Auth/Sha1.h b/src/shared/Auth/Sha1.h index d748dc6d747..6794d3bd103 100644 --- a/src/shared/Auth/Sha1.h +++ b/src/shared/Auth/Sha1.h @@ -51,3 +51,4 @@ class Sha1Hash uint8 mDigest[SHA_DIGEST_LENGTH]; }; #endif + diff --git a/src/shared/Auth/md5.h b/src/shared/Auth/md5.h index fa2937e13e4..0463051b6a6 100644 --- a/src/shared/Auth/md5.h +++ b/src/shared/Auth/md5.h @@ -89,3 +89,4 @@ extern "C" } /* end extern "C" */ #endif #endif /* md5_INCLUDED */ + diff --git a/src/shared/Base.cpp b/src/shared/Base.cpp index 9929cd41fdf..ca5094810d6 100644 --- a/src/shared/Base.cpp +++ b/src/shared/Base.cpp @@ -65,3 +65,4 @@ int Base::GetRefCount () { return RefCount; } + diff --git a/src/shared/Base.h b/src/shared/Base.h index d5907fdf473..e14ea6b27b9 100644 --- a/src/shared/Base.h +++ b/src/shared/Base.h @@ -52,3 +52,4 @@ class Base }; #endif // __BASE_H__ + diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h index 3d0d19d9120..fb2d7cfc7b9 100644 --- a/src/shared/ByteBuffer.h +++ b/src/shared/ByteBuffer.h @@ -479,3 +479,4 @@ template <typename K, typename V> ByteBuffer &operator>>(ByteBuffer &b, std::map return b; } #endif + diff --git a/src/shared/Common.cpp b/src/shared/Common.cpp index db039b93a82..a31c88fdba5 100644 --- a/src/shared/Common.cpp +++ b/src/shared/Common.cpp @@ -40,3 +40,4 @@ LocaleConstant GetLocaleByName(const std::string& name) return LOCALE_enUS; // including enGB case } + diff --git a/src/shared/Common.h b/src/shared/Common.h index c97de30ed46..5e6a2cca520 100644 --- a/src/shared/Common.h +++ b/src/shared/Common.h @@ -206,3 +206,4 @@ LocaleConstant GetLocaleByName(const std::string& name); #endif #endif + diff --git a/src/shared/Config/Config.cpp b/src/shared/Config/Config.cpp index 1dacb55b670..4f9402b5f01 100644 --- a/src/shared/Config/Config.cpp +++ b/src/shared/Config/Config.cpp @@ -174,3 +174,4 @@ float Config::GetFloatDefault(const char* name, const float def) float val; return (GetFloat(name, &val) ? val : def); } + diff --git a/src/shared/Config/Config.h b/src/shared/Config/Config.h index 7347d3ee7a1..4dbff1b1153 100644 --- a/src/shared/Config/Config.h +++ b/src/shared/Config/Config.h @@ -58,3 +58,4 @@ class TRINITY_DLL_SPEC Config #define sConfig Trinity::Singleton<Config>::Instance() #endif + diff --git a/src/shared/Config/ConfigEnv.h b/src/shared/Config/ConfigEnv.h index 09877cbd296..eaa86c882df 100644 --- a/src/shared/Config/ConfigEnv.h +++ b/src/shared/Config/ConfigEnv.h @@ -27,3 +27,4 @@ #include "Config.h" #endif + diff --git a/src/shared/Config/dotconfpp/dotconfpp.cpp b/src/shared/Config/dotconfpp/dotconfpp.cpp index 543e8acf1f4..3e2aa8683fe 100644 --- a/src/shared/Config/dotconfpp/dotconfpp.cpp +++ b/src/shared/Config/dotconfpp/dotconfpp.cpp @@ -586,3 +586,4 @@ void DOTCONFDocument::setRequiredOptionNames(const char ** requiredOptionNames) ++requiredOptionNames; } } + diff --git a/src/shared/Config/dotconfpp/dotconfpp.h b/src/shared/Config/dotconfpp/dotconfpp.h index 15c4f7fcd78..7887f86ccc1 100644 --- a/src/shared/Config/dotconfpp/dotconfpp.h +++ b/src/shared/Config/dotconfpp/dotconfpp.h @@ -108,3 +108,4 @@ public: }; #endif + diff --git a/src/shared/Config/dotconfpp/mempool.cpp b/src/shared/Config/dotconfpp/mempool.cpp index cf589ffb2bc..487dae0bd0a 100644 --- a/src/shared/Config/dotconfpp/mempool.cpp +++ b/src/shared/Config/dotconfpp/mempool.cpp @@ -98,3 +98,4 @@ char * AsyncDNSMemPool::strdup(const char *str) { return ::strcpy((char*)this->alloc(strlen(str)+1), str); } + diff --git a/src/shared/Config/dotconfpp/mempool.h b/src/shared/Config/dotconfpp/mempool.h index 04bd1e006ad..81c01d15a58 100644 --- a/src/shared/Config/dotconfpp/mempool.h +++ b/src/shared/Config/dotconfpp/mempool.h @@ -44,3 +44,4 @@ public: }; #endif + diff --git a/src/shared/Database/DBCEnums.h b/src/shared/Database/DBCEnums.h index 1d54616a2b5..d8699b2c240 100644 --- a/src/shared/Database/DBCEnums.h +++ b/src/shared/Database/DBCEnums.h @@ -110,3 +110,4 @@ enum TotemCategoryType }; #endif + diff --git a/src/shared/Database/DBCStores.cpp b/src/shared/Database/DBCStores.cpp index fb132c75768..67b806cd632 100644 --- a/src/shared/Database/DBCStores.cpp +++ b/src/shared/Database/DBCStores.cpp @@ -649,3 +649,4 @@ uint32 const* GetTalentTabPages(uint32 cls) TRINITY_DLL_SPEC DBCStorage <SoundEntriesEntry> const* GetSoundEntriesStore() { return &sSoundEntriesStore; } TRINITY_DLL_SPEC DBCStorage <SpellEntry> const* GetSpellStore() { return &sSpellStore; } TRINITY_DLL_SPEC DBCStorage <SpellRangeEntry> const* GetSpellRangeStore() { return &sSpellRangeStore; } + diff --git a/src/shared/Database/DBCStores.h b/src/shared/Database/DBCStores.h index 98a54fbeccf..dd255894ded 100644 --- a/src/shared/Database/DBCStores.h +++ b/src/shared/Database/DBCStores.h @@ -204,3 +204,4 @@ TRINITY_DLL_SPEC DBCStorage <SoundEntriesEntry> const* GetSoundEntriesStore(); TRINITY_DLL_SPEC DBCStorage <SpellEntry> const* GetSpellStore(); TRINITY_DLL_SPEC DBCStorage <SpellRangeEntry> const* GetSpellRangeStore(); #endif + diff --git a/src/shared/Database/DBCStructure.h b/src/shared/Database/DBCStructure.h index f2dc8222a72..2f51f1d6579 100644 --- a/src/shared/Database/DBCStructure.h +++ b/src/shared/Database/DBCStructure.h @@ -891,3 +891,4 @@ typedef std::vector<TaxiPathNodeList> TaxiPathNodesByPath; #define TaxiMaskSize 16 typedef uint32 TaxiMask[TaxiMaskSize]; #endif + diff --git a/src/shared/Database/DBCfmt.cpp b/src/shared/Database/DBCfmt.cpp index 57a81921d62..cab781692f0 100644 --- a/src/shared/Database/DBCfmt.cpp +++ b/src/shared/Database/DBCfmt.cpp @@ -82,3 +82,4 @@ const char TaxiPathNodeEntryfmt[]="diiifffiixx"; const char TotemCategoryEntryfmt[]="nxxxxxxxxxxxxxxxxxii"; const char WorldMapAreaEntryfmt[]="xinxffffi"; const char WorldSafeLocsEntryfmt[]="nifffxxxxxxxxxxxxxxxxx"; + diff --git a/src/shared/Database/Database.cpp b/src/shared/Database/Database.cpp index 4623deacbed..7110fe44c54 100644 --- a/src/shared/Database/Database.cpp +++ b/src/shared/Database/Database.cpp @@ -171,3 +171,4 @@ bool Database::DirectPExecute(const char * format,...) return DirectExecute(szQuery); } + diff --git a/src/shared/Database/Database.h b/src/shared/Database/Database.h index 7e64fbebb55..c2ee9349979 100644 --- a/src/shared/Database/Database.h +++ b/src/shared/Database/Database.h @@ -135,3 +135,4 @@ class TRINITY_DLL_SPEC Database std::string m_logsDir; }; #endif + diff --git a/src/shared/Database/DatabaseEnv.h b/src/shared/Database/DatabaseEnv.h index fe565cde7a6..664459473af 100644 --- a/src/shared/Database/DatabaseEnv.h +++ b/src/shared/Database/DatabaseEnv.h @@ -56,3 +56,4 @@ extern DatabaseType CharacterDatabase; extern DatabaseType LoginDatabase; #endif + diff --git a/src/shared/Database/DatabaseImpl.h b/src/shared/Database/DatabaseImpl.h index 244f52d0106..5ab4ec04a65 100644 --- a/src/shared/Database/DatabaseImpl.h +++ b/src/shared/Database/DatabaseImpl.h @@ -205,3 +205,4 @@ Database::DelayQueryHolder(Class *object, void (Class::*method)(QueryResult*, Sq #undef ASYNC_QUERY_BODY #undef ASYNC_PQUERY_BODY #undef ASYNC_DELAYHOLDER_BODY + diff --git a/src/shared/Database/DatabaseMysql.cpp b/src/shared/Database/DatabaseMysql.cpp index 0fae83caadf..72da1090a85 100644 --- a/src/shared/Database/DatabaseMysql.cpp +++ b/src/shared/Database/DatabaseMysql.cpp @@ -408,3 +408,4 @@ void DatabaseMysql::HaltDelayThread() m_threadBody = NULL; } #endif + diff --git a/src/shared/Database/DatabaseMysql.h b/src/shared/Database/DatabaseMysql.h index ee800fdf22e..1826a08f2aa 100644 --- a/src/shared/Database/DatabaseMysql.h +++ b/src/shared/Database/DatabaseMysql.h @@ -77,3 +77,4 @@ class TRINITY_DLL_SPEC DatabaseMysql : public Database }; #endif #endif + diff --git a/src/shared/Database/DatabasePostgre.cpp b/src/shared/Database/DatabasePostgre.cpp index 6a172bb12a0..25b5a58b863 100644 --- a/src/shared/Database/DatabasePostgre.cpp +++ b/src/shared/Database/DatabasePostgre.cpp @@ -345,3 +345,4 @@ void DatabasePostgre::HaltDelayThread() m_threadBody = NULL; } #endif + diff --git a/src/shared/Database/DatabasePostgre.h b/src/shared/Database/DatabasePostgre.h index 7e541f84c73..6dc0c509869 100644 --- a/src/shared/Database/DatabasePostgre.h +++ b/src/shared/Database/DatabasePostgre.h @@ -75,3 +75,4 @@ class DatabasePostgre : public Database bool _TransactionCmd(const char *sql); }; #endif + diff --git a/src/shared/Database/DatabaseSqlite.cpp b/src/shared/Database/DatabaseSqlite.cpp index 9de786bf739..a7a4a2a9847 100644 --- a/src/shared/Database/DatabaseSqlite.cpp +++ b/src/shared/Database/DatabaseSqlite.cpp @@ -101,3 +101,4 @@ bool DatabaseSqlite::Execute(const char *sql) return true; } #endif + diff --git a/src/shared/Database/DatabaseSqlite.h b/src/shared/Database/DatabaseSqlite.h index 325c3168acb..32d49d0124b 100644 --- a/src/shared/Database/DatabaseSqlite.h +++ b/src/shared/Database/DatabaseSqlite.h @@ -43,3 +43,4 @@ class DatabaseSqlite : public Database }; #endif #endif + diff --git a/src/shared/Database/Field.cpp b/src/shared/Database/Field.cpp index 20a88395b7e..a7817d9a630 100644 --- a/src/shared/Database/Field.cpp +++ b/src/shared/Database/Field.cpp @@ -65,3 +65,4 @@ void Field::SetValue(const char *value) else mValue = NULL; } + diff --git a/src/shared/Database/Field.h b/src/shared/Database/Field.h index 430e262c39e..3e5f26376bb 100644 --- a/src/shared/Database/Field.h +++ b/src/shared/Database/Field.h @@ -75,3 +75,4 @@ class Field enum DataTypes mType; }; #endif + diff --git a/src/shared/Database/MySQLDelayThread.h b/src/shared/Database/MySQLDelayThread.h index b01d88b6f72..14cf1a64617 100644 --- a/src/shared/Database/MySQLDelayThread.h +++ b/src/shared/Database/MySQLDelayThread.h @@ -30,3 +30,4 @@ class MySQLDelayThread : public SqlDelayThread void Stop() { SqlDelayThread::Stop(); } }; #endif //__MYSQLDELAYTHREAD_H + diff --git a/src/shared/Database/PGSQLDelayThread.h b/src/shared/Database/PGSQLDelayThread.h index 0525fb9f6d6..19941464cca 100644 --- a/src/shared/Database/PGSQLDelayThread.h +++ b/src/shared/Database/PGSQLDelayThread.h @@ -30,3 +30,4 @@ class PGSQLDelayThread : public SqlDelayThread void Stop() { SqlDelayThread::Stop(); } }; #endif //__PGSQLDELAYTHREAD_H + diff --git a/src/shared/Database/QueryResult.h b/src/shared/Database/QueryResult.h index ab87fda59be..32e47c0959f 100644 --- a/src/shared/Database/QueryResult.h +++ b/src/shared/Database/QueryResult.h @@ -64,3 +64,4 @@ class TRINITY_DLL_SPEC QueryResult FieldNames mFieldNames; }; #endif + diff --git a/src/shared/Database/QueryResultMysql.cpp b/src/shared/Database/QueryResultMysql.cpp index 63808060b9f..d995b9f2473 100644 --- a/src/shared/Database/QueryResultMysql.cpp +++ b/src/shared/Database/QueryResultMysql.cpp @@ -110,3 +110,4 @@ enum Field::DataTypes QueryResultMysql::ConvertNativeType(enum_field_types mysql } } #endif + diff --git a/src/shared/Database/QueryResultMysql.h b/src/shared/Database/QueryResultMysql.h index 79f5439ed06..3131bd4bbe4 100644 --- a/src/shared/Database/QueryResultMysql.h +++ b/src/shared/Database/QueryResultMysql.h @@ -48,3 +48,4 @@ class QueryResultMysql : public QueryResult }; #endif #endif + diff --git a/src/shared/Database/QueryResultPostgre.cpp b/src/shared/Database/QueryResultPostgre.cpp index 8ebe03ede64..def1b0061e5 100644 --- a/src/shared/Database/QueryResultPostgre.cpp +++ b/src/shared/Database/QueryResultPostgre.cpp @@ -139,3 +139,4 @@ enum Field::DataTypes QueryResultPostgre::ConvertNativeType(Oid pOid ) const return Field::DB_TYPE_UNKNOWN; } #endif + diff --git a/src/shared/Database/QueryResultPostgre.h b/src/shared/Database/QueryResultPostgre.h index ac7f31223ba..61311728f2d 100644 --- a/src/shared/Database/QueryResultPostgre.h +++ b/src/shared/Database/QueryResultPostgre.h @@ -48,3 +48,4 @@ class QueryResultPostgre : public QueryResult uint32 mTableIndex; }; #endif + diff --git a/src/shared/Database/QueryResultSqlite.cpp b/src/shared/Database/QueryResultSqlite.cpp index 2bf64ed49ab..a041232f600 100644 --- a/src/shared/Database/QueryResultSqlite.cpp +++ b/src/shared/Database/QueryResultSqlite.cpp @@ -96,3 +96,4 @@ enum Field::DataTypes QueryResultSqlite::ConvertNativeType(const char* sqliteTyp return Field::DB_TYPE_UNKNOWN; } #endif + diff --git a/src/shared/Database/QueryResultSqlite.h b/src/shared/Database/QueryResultSqlite.h index 1416ac426cc..b2622f96707 100644 --- a/src/shared/Database/QueryResultSqlite.h +++ b/src/shared/Database/QueryResultSqlite.h @@ -43,3 +43,4 @@ class QueryResultSqlite : public QueryResult }; #endif #endif + diff --git a/src/shared/Database/SQLStorage.cpp b/src/shared/Database/SQLStorage.cpp index cd1c7908e46..1419d6a2ac6 100644 --- a/src/shared/Database/SQLStorage.cpp +++ b/src/shared/Database/SQLStorage.cpp @@ -81,3 +81,4 @@ void SQLStorage::Load() SQLStorageLoader loader; loader.Load(*this); } + diff --git a/src/shared/Database/SQLStorage.h b/src/shared/Database/SQLStorage.h index 5a429d185cb..43e34532607 100644 --- a/src/shared/Database/SQLStorage.h +++ b/src/shared/Database/SQLStorage.h @@ -114,3 +114,4 @@ struct SQLStorageLoader : public SQLStorageLoaderBase<SQLStorageLoader> }; #endif + diff --git a/src/shared/Database/SQLStorageImpl.h b/src/shared/Database/SQLStorageImpl.h index 4f10c6eee05..82ff0beb60e 100644 --- a/src/shared/Database/SQLStorageImpl.h +++ b/src/shared/Database/SQLStorageImpl.h @@ -212,3 +212,4 @@ void SQLStorageLoaderBase<T>::Load(SQLStorage &store) store.MaxEntry = maxi; store.data = _data; } + diff --git a/src/shared/Database/SqlDelayThread.cpp b/src/shared/Database/SqlDelayThread.cpp index a265b48e622..16d5146fc53 100644 --- a/src/shared/Database/SqlDelayThread.cpp +++ b/src/shared/Database/SqlDelayThread.cpp @@ -55,3 +55,4 @@ void SqlDelayThread::Stop() { m_running = false; } + diff --git a/src/shared/Database/SqlDelayThread.h b/src/shared/Database/SqlDelayThread.h index 093c1c843d0..4c77c122f1e 100644 --- a/src/shared/Database/SqlDelayThread.h +++ b/src/shared/Database/SqlDelayThread.h @@ -48,3 +48,4 @@ class SqlDelayThread : public ZThread::Runnable virtual void run(); ///< Main Thread loop }; #endif //__SQLDELAYTHREAD_H + diff --git a/src/shared/Database/SqlOperations.cpp b/src/shared/Database/SqlOperations.cpp index 1a81c4c96a1..c11c5b9269d 100644 --- a/src/shared/Database/SqlOperations.cpp +++ b/src/shared/Database/SqlOperations.cpp @@ -199,3 +199,4 @@ void SqlQueryHolderEx::Execute(Database *db) /// sync with the caller thread m_queue->add(m_callback); } + diff --git a/src/shared/Database/SqlOperations.h b/src/shared/Database/SqlOperations.h index 0ebff9868d9..1a0d3c78d1b 100644 --- a/src/shared/Database/SqlOperations.h +++ b/src/shared/Database/SqlOperations.h @@ -121,3 +121,4 @@ class SqlQueryHolderEx : public SqlOperation void Execute(Database *db); }; #endif //__SQLOPERATIONS_H + diff --git a/src/shared/Database/dbcfile.cpp b/src/shared/Database/dbcfile.cpp index 9f570e72496..9b363dbff8d 100644 --- a/src/shared/Database/dbcfile.cpp +++ b/src/shared/Database/dbcfile.cpp @@ -243,3 +243,4 @@ char* DBCFile::AutoProduceStrings(const char* format, char* dataTable) return stringPool; } + diff --git a/src/shared/Database/dbcfile.h b/src/shared/Database/dbcfile.h index e0cef4dee5f..aa36f6003dc 100644 --- a/src/shared/Database/dbcfile.h +++ b/src/shared/Database/dbcfile.h @@ -107,3 +107,4 @@ class DBCFile unsigned char *stringTable; }; #endif + diff --git a/src/shared/Errors.h b/src/shared/Errors.h index 0e8feb8424a..7203f1c5420 100644 --- a/src/shared/Errors.h +++ b/src/shared/Errors.h @@ -29,3 +29,4 @@ #define ASSERT WPAssert #endif + diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp index 9e910a4fcbf..d042be82b77 100644 --- a/src/shared/Log.cpp +++ b/src/shared/Log.cpp @@ -796,3 +796,4 @@ void error_db_log(const char * str, ...) Trinity::Singleton<Log>::Instance().outErrorDb(buf); } + diff --git a/src/shared/Log.h b/src/shared/Log.h index c4190264f3a..ab8c24571fb 100644 --- a/src/shared/Log.h +++ b/src/shared/Log.h @@ -165,3 +165,4 @@ void TRINITY_DLL_SPEC debug_log(const char * str, ...) ATTR_PRINTF(1,2); void TRINITY_DLL_SPEC error_log(const char * str, ...) ATTR_PRINTF(1,2); void TRINITY_DLL_SPEC error_db_log(const char * str, ...) ATTR_PRINTF(1,2); #endif + diff --git a/src/shared/Mthread.cpp b/src/shared/Mthread.cpp index 8985b9cebc8..fbbeeb5a620 100644 --- a/src/shared/Mthread.cpp +++ b/src/shared/Mthread.cpp @@ -203,3 +203,4 @@ MMutex *MMutex::Create () return mutex; } #endif + diff --git a/src/shared/Mthread.h b/src/shared/Mthread.h index 1afee4acd1b..d0ac6deb43c 100644 --- a/src/shared/Mthread.h +++ b/src/shared/Mthread.h @@ -60,3 +60,4 @@ class MMutex : public Base virtual void Unlock (); }; #endif // MTHREAD_H + diff --git a/src/shared/PacketLog.cpp b/src/shared/PacketLog.cpp index 0ae6f198640..aa9fd2dc348 100644 --- a/src/shared/PacketLog.cpp +++ b/src/shared/PacketLog.cpp @@ -157,3 +157,4 @@ void PacketLog::WorldHexDump(WorldPacket* data, uint32 socket, bool direction) HexDump((char *)data->contents(), data->size(), "world.log"); } + diff --git a/src/shared/PacketLog.h b/src/shared/PacketLog.h index 3280d801261..30fb7da15b9 100644 --- a/src/shared/PacketLog.h +++ b/src/shared/PacketLog.h @@ -46,3 +46,4 @@ class PacketLog #define sPacketLog Trinity::Singleton<PacketLog>::Instance() #endif + diff --git a/src/shared/ProgressBar.cpp b/src/shared/ProgressBar.cpp index 3cb09290485..f5a45b9d862 100644 --- a/src/shared/ProgressBar.cpp +++ b/src/shared/ProgressBar.cpp @@ -80,3 +80,4 @@ void barGoLink::step( void ) rec_pos = n; } } + diff --git a/src/shared/ProgressBar.h b/src/shared/ProgressBar.h index 77f1e4c43ec..3f217f228fe 100644 --- a/src/shared/ProgressBar.h +++ b/src/shared/ProgressBar.h @@ -40,3 +40,4 @@ class TRINITY_DLL_SPEC barGoLink ~barGoLink(); }; #endif + diff --git a/src/shared/ServiceWin32.cpp b/src/shared/ServiceWin32.cpp index 2a152513977..d384884529a 100644 --- a/src/shared/ServiceWin32.cpp +++ b/src/shared/ServiceWin32.cpp @@ -260,3 +260,4 @@ bool WinServiceRun() return true; } #endif + diff --git a/src/shared/ServiceWin32.h b/src/shared/ServiceWin32.h index fdc9d7d4e9e..d046acdcef4 100644 --- a/src/shared/ServiceWin32.h +++ b/src/shared/ServiceWin32.h @@ -28,3 +28,4 @@ bool WinServiceRun(); #endif // _WIN32_SERVICE_ #endif // WIN32 + diff --git a/src/shared/SystemConfig.h b/src/shared/SystemConfig.h index 9e7fe3e3045..6b4471e792d 100644 --- a/src/shared/SystemConfig.h +++ b/src/shared/SystemConfig.h @@ -52,3 +52,4 @@ #define DEFAULT_REALMSERVER_PORT 3724 #define DEFAULT_SOCKET_SELECT_TIME 10000 #endif + diff --git a/src/shared/Timer.h b/src/shared/Timer.h index 848a8cfac4f..81b6bb58465 100644 --- a/src/shared/Timer.h +++ b/src/shared/Timer.h @@ -96,3 +96,4 @@ struct TimeTrackerSmall }; #endif + diff --git a/src/shared/Util.cpp b/src/shared/Util.cpp index 72b35319298..26d2275ec2a 100644 --- a/src/shared/Util.cpp +++ b/src/shared/Util.cpp @@ -425,3 +425,4 @@ bool Utf8FitTo(const std::string& str, std::wstring search) return true; } + diff --git a/src/shared/Util.h b/src/shared/Util.h index 4b91a8ede4c..98e60f83319 100644 --- a/src/shared/Util.h +++ b/src/shared/Util.h @@ -316,3 +316,4 @@ bool IsIPAddress(char const* ipaddress); uint32 CreatePIDFile(const std::string& filename); #endif + diff --git a/src/shared/WheatyExceptionReport.cpp b/src/shared/WheatyExceptionReport.cpp index 5d365639fbf..7b97edd8f5b 100644 --- a/src/shared/WheatyExceptionReport.cpp +++ b/src/shared/WheatyExceptionReport.cpp @@ -1013,3 +1013,4 @@ int __cdecl WheatyExceptionReport::_tprintf(const TCHAR * format, ...) return retValue; } + diff --git a/src/shared/WheatyExceptionReport.h b/src/shared/WheatyExceptionReport.h index 896d9c72f36..32cd78fa100 100644 --- a/src/shared/WheatyExceptionReport.h +++ b/src/shared/WheatyExceptionReport.h @@ -115,3 +115,4 @@ class WheatyExceptionReport extern WheatyExceptionReport g_WheatyExceptionReport; // global instance of class #endif //WheatyExceptionReport + diff --git a/src/shared/WorldPacket.h b/src/shared/WorldPacket.h index ee17047a9ef..8849b790f01 100644 --- a/src/shared/WorldPacket.h +++ b/src/shared/WorldPacket.h @@ -51,3 +51,4 @@ class WorldPacket : public ByteBuffer uint16 m_opcode; }; #endif + diff --git a/src/shared/vmap/AABSPTree.h b/src/shared/vmap/AABSPTree.h index bc33a6699d1..ff4335b6774 100644 --- a/src/shared/vmap/AABSPTree.h +++ b/src/shared/vmap/AABSPTree.h @@ -1618,3 +1618,4 @@ public: + diff --git a/src/shared/vmap/BaseModel.cpp b/src/shared/vmap/BaseModel.cpp index 1b7ad34d413..f4bf13bc558 100644 --- a/src/shared/vmap/BaseModel.cpp +++ b/src/shared/vmap/BaseModel.cpp @@ -95,3 +95,4 @@ namespace VMAP } } // VMAP + diff --git a/src/shared/vmap/BaseModel.h b/src/shared/vmap/BaseModel.h index 1601f367de7..6c17f704692 100644 --- a/src/shared/vmap/BaseModel.h +++ b/src/shared/vmap/BaseModel.h @@ -99,3 +99,4 @@ namespace VMAP } #endif /*BASEMODEL_H_*/ + diff --git a/src/shared/vmap/CoordModelMapping.cpp b/src/shared/vmap/CoordModelMapping.cpp index 7c7c801d690..319e7bb8c31 100644 --- a/src/shared/vmap/CoordModelMapping.cpp +++ b/src/shared/vmap/CoordModelMapping.cpp @@ -187,3 +187,4 @@ namespace VMAP //================================================================= } + diff --git a/src/shared/vmap/CoordModelMapping.h b/src/shared/vmap/CoordModelMapping.h index 34f1917f5b3..cfaa600ee81 100644 --- a/src/shared/vmap/CoordModelMapping.h +++ b/src/shared/vmap/CoordModelMapping.h @@ -144,3 +144,4 @@ namespace VMAP }; } #endif /*_COORDMODELMAPPING_H_*/ + diff --git a/src/shared/vmap/DebugCmdLogger.cpp b/src/shared/vmap/DebugCmdLogger.cpp index 5e26b7ade8f..2552a16acc2 100644 --- a/src/shared/vmap/DebugCmdLogger.cpp +++ b/src/shared/vmap/DebugCmdLogger.cpp @@ -125,3 +125,4 @@ namespace VMAP } //======================================================== } + diff --git a/src/shared/vmap/DebugCmdLogger.h b/src/shared/vmap/DebugCmdLogger.h index aa0df4d1e5c..a194d335381 100644 --- a/src/shared/vmap/DebugCmdLogger.h +++ b/src/shared/vmap/DebugCmdLogger.h @@ -116,3 +116,4 @@ namespace VMAP } #endif + diff --git a/src/shared/vmap/IVMapManager.h b/src/shared/vmap/IVMapManager.h index 60159ed8bea..01aef4b9d4c 100644 --- a/src/shared/vmap/IVMapManager.h +++ b/src/shared/vmap/IVMapManager.h @@ -99,3 +99,4 @@ namespace VMAP } #endif + diff --git a/src/shared/vmap/ManagedModelContainer.cpp b/src/shared/vmap/ManagedModelContainer.cpp index 08c58a60c8f..1362002bafd 100644 --- a/src/shared/vmap/ManagedModelContainer.cpp +++ b/src/shared/vmap/ManagedModelContainer.cpp @@ -35,3 +35,4 @@ namespace VMAP } } + diff --git a/src/shared/vmap/ManagedModelContainer.h b/src/shared/vmap/ManagedModelContainer.h index b193ef9d57f..33c675d0806 100644 --- a/src/shared/vmap/ManagedModelContainer.h +++ b/src/shared/vmap/ManagedModelContainer.h @@ -49,3 +49,4 @@ namespace VMAP //======================================================= } #endif + diff --git a/src/shared/vmap/ModelContainer.cpp b/src/shared/vmap/ModelContainer.cpp index 4d2dc2aac78..9eb100161d8 100644 --- a/src/shared/vmap/ModelContainer.cpp +++ b/src/shared/vmap/ModelContainer.cpp @@ -375,3 +375,4 @@ namespace VMAP } //================================================================= } // VMAP + diff --git a/src/shared/vmap/ModelContainer.h b/src/shared/vmap/ModelContainer.h index 98b4c9ddcf3..9613bf53d96 100644 --- a/src/shared/vmap/ModelContainer.h +++ b/src/shared/vmap/ModelContainer.h @@ -108,3 +108,4 @@ namespace VMAP void getBounds(const ModelContainer* pMc, G3D::AABox& pAABox); } #endif + diff --git a/src/shared/vmap/NodeValueAccess.h b/src/shared/vmap/NodeValueAccess.h index b8ec54e90be..e14a6dba676 100644 --- a/src/shared/vmap/NodeValueAccess.h +++ b/src/shared/vmap/NodeValueAccess.h @@ -48,3 +48,4 @@ namespace VMAP }; } #endif + diff --git a/src/shared/vmap/ShortBox.h b/src/shared/vmap/ShortBox.h index 9c5472f4c3a..bffca0d806d 100644 --- a/src/shared/vmap/ShortBox.h +++ b/src/shared/vmap/ShortBox.h @@ -148,3 +148,4 @@ namespace VMAP } #endif + diff --git a/src/shared/vmap/ShortVector.h b/src/shared/vmap/ShortVector.h index 8c4aec8a0b4..f7dd0f74859 100644 --- a/src/shared/vmap/ShortVector.h +++ b/src/shared/vmap/ShortVector.h @@ -134,3 +134,4 @@ namespace VMAP }; } #endif + diff --git a/src/shared/vmap/SubModel.cpp b/src/shared/vmap/SubModel.cpp index 3d1c0e29ff6..c6022d2ed69 100644 --- a/src/shared/vmap/SubModel.cpp +++ b/src/shared/vmap/SubModel.cpp @@ -248,3 +248,4 @@ namespace VMAP //========================================================== } + diff --git a/src/shared/vmap/SubModel.h b/src/shared/vmap/SubModel.h index bc8239b1568..c52dc7f5c51 100644 --- a/src/shared/vmap/SubModel.h +++ b/src/shared/vmap/SubModel.h @@ -102,3 +102,4 @@ namespace VMAP //==================================== } // VMAP #endif + diff --git a/src/shared/vmap/TileAssembler.cpp b/src/shared/vmap/TileAssembler.cpp index fd83a318f65..e6a1a6f448b 100644 --- a/src/shared/vmap/TileAssembler.cpp +++ b/src/shared/vmap/TileAssembler.cpp @@ -571,3 +571,4 @@ namespace VMAP //========================================== } // VMAP + diff --git a/src/shared/vmap/TileAssembler.h b/src/shared/vmap/TileAssembler.h index 3f0f9468172..a2fe8055fcf 100644 --- a/src/shared/vmap/TileAssembler.h +++ b/src/shared/vmap/TileAssembler.h @@ -93,3 +93,4 @@ namespace VMAP //=============================================== } // VMAP #endif /*_TILEASSEMBLER_H_*/ + diff --git a/src/shared/vmap/TreeNode.cpp b/src/shared/vmap/TreeNode.cpp index af7fe224fe5..113199235bf 100644 --- a/src/shared/vmap/TreeNode.cpp +++ b/src/shared/vmap/TreeNode.cpp @@ -37,3 +37,4 @@ namespace VMAP //================================================================= //================================================================= } + diff --git a/src/shared/vmap/TreeNode.h b/src/shared/vmap/TreeNode.h index 8f3fbd7a71a..d71396487b9 100644 --- a/src/shared/vmap/TreeNode.h +++ b/src/shared/vmap/TreeNode.h @@ -223,3 +223,4 @@ namespace VMAP }; } #endif + diff --git a/src/shared/vmap/VMapDefinitions.h b/src/shared/vmap/VMapDefinitions.h index c3498ea9260..0800bfbda88 100644 --- a/src/shared/vmap/VMapDefinitions.h +++ b/src/shared/vmap/VMapDefinitions.h @@ -37,3 +37,4 @@ namespace VMAP //====================================== } #endif + diff --git a/src/shared/vmap/VMapFactory.cpp b/src/shared/vmap/VMapFactory.cpp index 4c349cdaa62..2dad2047189 100644 --- a/src/shared/vmap/VMapFactory.cpp +++ b/src/shared/vmap/VMapFactory.cpp @@ -110,3 +110,4 @@ namespace VMAP } } } + diff --git a/src/shared/vmap/VMapFactory.h b/src/shared/vmap/VMapFactory.h index a8784a37219..9a4493d8817 100644 --- a/src/shared/vmap/VMapFactory.h +++ b/src/shared/vmap/VMapFactory.h @@ -43,3 +43,4 @@ namespace VMAP } #endif + diff --git a/src/shared/vmap/VMapManager.cpp b/src/shared/vmap/VMapManager.cpp index cf2bc080865..3b93b63086b 100644 --- a/src/shared/vmap/VMapManager.cpp +++ b/src/shared/vmap/VMapManager.cpp @@ -774,3 +774,4 @@ namespace VMAP //========================================================= //========================================================= } + diff --git a/src/shared/vmap/VMapManager.h b/src/shared/vmap/VMapManager.h index 5b4064915e4..8ece6de4652 100644 --- a/src/shared/vmap/VMapManager.h +++ b/src/shared/vmap/VMapManager.h @@ -173,3 +173,4 @@ namespace VMAP }; } #endif + diff --git a/src/shared/vmap/VMapTools.h b/src/shared/vmap/VMapTools.h index 49a28d5272d..4961064d188 100644 --- a/src/shared/vmap/VMapTools.h +++ b/src/shared/vmap/VMapTools.h @@ -150,3 +150,4 @@ namespace VMAP }; } #endif + |
