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
@@ -3,11 +3,11 @@
#include "core/resources/resource_cache.hpp"
namespace AudioResource {
JA_Music_t* getMusic(const std::string& name) {
auto getMusic(const std::string& name) -> JA_Music_t* {
return Resource::Cache::get()->getMusic(name);
}
JA_Sound_t* getSound(const std::string& name) {
auto getSound(const std::string& name) -> JA_Sound_t* {
return Resource::Cache::get()->getSound(name);
}
} // namespace AudioResource