Mercurial > minori
comparison include/services/anilist.h @ 369:47c9f8502269
*: clang-format all the things
I've edited the formatting a bit. Now pointer asterisks (and reference
ampersands) are on the variable instead of the type, as well as having
newlines for function braces (but nothing else)
author | Paper <paper@tflc.us> |
---|---|
date | Fri, 25 Jul 2025 10:16:02 -0400 |
parents | b5d6c27c308f |
children |
comparison
equal
deleted
inserted
replaced
368:6d37a998cf91 | 369:47c9f8502269 |
---|---|
14 | 14 |
15 /* Read queries */ | 15 /* Read queries */ |
16 int GetAnimeList(); | 16 int GetAnimeList(); |
17 | 17 |
18 /* Search query */ | 18 /* Search query */ |
19 std::vector<int> Search(const std::string& search); | 19 std::vector<int> Search(const std::string &search); |
20 bool GetSeason(Anime::Season season); | 20 bool GetSeason(Anime::Season season); |
21 | 21 |
22 /* Write queries (mutations) */ | 22 /* Write queries (mutations) */ |
23 int UpdateAnimeEntry(int id); | 23 int UpdateAnimeEntry(int id); |
24 | 24 |