mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-27 12:22:39 +01:00
Core/Misc: Use ASSERT (custom, better macro) instead of the C macro assert()
This commit is contained in:
@@ -20,6 +20,7 @@
|
||||
#include "Common.h"
|
||||
#include "utf8.h"
|
||||
#include "SFMT.h"
|
||||
#include "Errors.h" // for ASSERT
|
||||
#include <ace/TSS_T.h>
|
||||
#include <ace/INET_Addr.h>
|
||||
|
||||
@@ -28,19 +29,19 @@ static SFMTRandTSS sfmtRand;
|
||||
|
||||
int32 irand(int32 min, int32 max)
|
||||
{
|
||||
assert(max >= min);
|
||||
ASSERT(max >= min);
|
||||
return int32(sfmtRand->IRandom(min, max));
|
||||
}
|
||||
|
||||
uint32 urand(uint32 min, uint32 max)
|
||||
{
|
||||
assert(max >= min);
|
||||
ASSERT(max >= min);
|
||||
return sfmtRand->URandom(min, max);
|
||||
}
|
||||
|
||||
float frand(float min, float max)
|
||||
{
|
||||
assert(max >= min);
|
||||
ASSERT(max >= min);
|
||||
return float(sfmtRand->Random() * (max - min) + min);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user