diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-10-28 02:33:13 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-10-28 02:33:13 -0400 |
commit | 2c2686946d3a9364399fb9c24733ed31383cd94f (patch) | |
tree | 561facd4c098318e323b300fddd5a4b892291c48 /discord/store.hpp | |
parent | 9175da2cf0fcb0bcc209bec1b777f2b51375361f (diff) | |
download | abaddon-portaudio-2c2686946d3a9364399fb9c24733ed31383cd94f.tar.gz abaddon-portaudio-2c2686946d3a9364399fb9c24733ed31383cd94f.zip |
try to fix weird ambiguous int stuff
Diffstat (limited to 'discord/store.hpp')
-rw-r--r-- | discord/store.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/store.hpp b/discord/store.hpp index 280d728..7bb1af1 100644 --- a/discord/store.hpp +++ b/discord/store.hpp @@ -102,7 +102,7 @@ private: int Bind(int index, int32_t num); int Bind(int index, uint32_t num); - int Bind(int index, uint64_t num); + int Bind(int index, size_t num); int Bind(int index, const char *str, size_t len = -1); int Bind(int index, const std::string &str); int Bind(int index, bool val); @@ -154,7 +154,7 @@ private: void Get(int index, uint8_t &out) const; void Get(int index, int32_t &out) const; - void Get(int index, uint64_t &out) const; + void Get(int index, size_t &out) const; void Get(int index, bool &out) const; void Get(int index, Snowflake &out) const; void Get(int index, std::string &out) const; |