fix: literal F, headers C++ i trailing return type

This commit is contained in:
2026-05-14 22:36:48 +02:00
parent ac93cfa7d7
commit b480a23c88
6 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -12,6 +12,6 @@ struct JA_Music_t;
struct JA_Sound_t;
namespace AudioResource {
JA_Music_t* getMusic(const std::string& name);
JA_Sound_t* getSound(const std::string& name);
auto getMusic(const std::string& name) -> JA_Music_t*;
auto getSound(const std::string& name) -> JA_Sound_t*;
} // namespace AudioResource