Update base repositories to use int as a base to avoid atoi overflow

This commit is contained in:
Akkadius
2020-04-19 04:49:28 -05:00
parent 373fb3f0e7
commit 6409e02aed
97 changed files with 540 additions and 540 deletions
@@ -35,11 +35,11 @@
class BaseTimersRepository {
public:
struct Timers {
int char_id;
int type;
int start;
int duration;
int8 enable;
int char_id;
int type;
int start;
int duration;
int enable;
};
static std::string PrimaryKey()