diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-04-05 22:01:53 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-04-05 22:01:53 -0400 |
commit | 49685c39895af67d7ffcc50fdc02150b6ee44f72 (patch) | |
tree | 5c5c262f95a30e58582a285b467d05954ff5f35c /src/discord/guild.hpp | |
parent | 9767e1e7fdef9262211ec676b4f0d4c30ff10649 (diff) | |
download | abaddon-portaudio-49685c39895af67d7ffcc50fdc02150b6ee44f72.tar.gz abaddon-portaudio-49685c39895af67d7ffcc50fdc02150b6ee44f72.zip |
fix up a bunch of clang-tidy stuff
mostly changing references, which i hope doesnt break stuff with models (TreeRow, iterators) since they gave me some strange problems in the past
Diffstat (limited to 'src/discord/guild.hpp')
-rw-r--r-- | src/discord/guild.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/discord/guild.hpp b/src/discord/guild.hpp index 51b5a01..3370fa8 100644 --- a/src/discord/guild.hpp +++ b/src/discord/guild.hpp @@ -94,6 +94,5 @@ struct GuildData { bool HasFeature(const std::string &feature); bool HasIcon() const; bool HasAnimatedIcon() const; - std::string GetIconURL(std::string ext = "png", std::string size = "32") const; - std::vector<Snowflake> GetSortedChannels(Snowflake ignore = Snowflake::Invalid) const; + std::string GetIconURL(const std::string &ext = "png", const std::string &size = "32") const; }; |