summaryrefslogtreecommitdiff
path: root/discord/role.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-01-07 02:41:49 -0500
committerouwou <26526779+ouwou@users.noreply.github.com>2021-01-07 02:41:49 -0500
commit8cf95fce0cb233125334482149c2c9f4219da52b (patch)
treec0c2e267385363e0f87ad4c80d299c08d33a33a9 /discord/role.hpp
parent2d6c4cd50d0075c064641150dcf65e6b58d5bf36 (diff)
downloadabaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.tar.gz
abaddon-portaudio-8cf95fce0cb233125334482149c2c9f4219da52b.zip
improve build process, add github actions
Diffstat (limited to 'discord/role.hpp')
-rw-r--r--discord/role.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/discord/role.hpp b/discord/role.hpp
index 078ac76..f638b65 100644
--- a/discord/role.hpp
+++ b/discord/role.hpp
@@ -5,7 +5,7 @@
#include <string>
#include <cstdint>
-struct Role {
+struct RoleData {
Snowflake ID;
std::string Name;
int Color;
@@ -16,5 +16,5 @@ struct Role {
bool IsManaged;
bool IsMentionable;
- friend void from_json(const nlohmann::json &j, Role &m);
+ friend void from_json(const nlohmann::json &j, RoleData &m);
};