Skip to content
Snippets Groups Projects
Commit b251df09 authored by Joseph Walton-Rivers's avatar Joseph Walton-Rivers
Browse files

small code cleanup to remove linting warnings

parent 5f941a05
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,7 @@
};
using ModuleID = util::OpaqueName<std::string_view, struct ModuleTag>;
template<typename T>
concept ModuleAPI = requires(T* type) {
{ T::MODULE_ID };
......
......@@ -22,7 +22,7 @@
namespace fggl::filesystem {
services::Module::ServiceList NativeBacked::getProvides() const {
auto NativeBacked::getProvides() const -> services::Module::ServiceList {
return { MODULE_ID, API::MODULE_ID };
}
......
......@@ -22,7 +22,8 @@
namespace fggl::services {
namespace {
void dumpFactories( const std::map<ServiceName, std::shared_ptr<ServiceBinding>>& factories ){
[[maybe_unused]]
void dump_factories( const std::map<ServiceName, std::shared_ptr<ServiceBinding>>& factories ){
std::cerr << "BEGIN registered factories" << std::endl;
for ( auto& factory : factories ) {
std::cerr << "\t" << factory.first.get() << std::endl;
......
......@@ -21,7 +21,6 @@
#include <memory>
#include <set>
#include <map>
#include <concepts>
#include "fggl/util/guid.hpp"
......
target_sources(fggl
PRIVATE
types.cpp
)
add_subdirectory(openal)
add_subdirectory(fallback)
\ No newline at end of file
/*
* This file is part of FGGL.
*
* FGGL is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* FGGL is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with FGGL.
* If not, see <https://www.gnu.org/licenses/>.
*/
#include "fggl/data/storage.hpp"
#include "fggl/audio/audio.hpp"
namespace fggl::audio {
} // namespace fggl::audio
namespace fggl::data {
} // namespace fggl::data
......@@ -41,7 +41,7 @@ namespace fggl::util {
* @param str the string to hash.
* @return the hashed value
*/
constexpr uint32_t hash_fnv1a_32(const char *str) {
constexpr auto hash_fnv1a_32(const char *str) -> uint32_t {
assert(str != nullptr);
uint32_t hash = FNV_OFFSET_BASIS_32;
for (int i = 0; str[i] != '\0'; i++) {
......@@ -57,7 +57,7 @@ namespace fggl::util {
* @param str the string to be hashed
* @return the hashed value
*/
constexpr uint64_t hash_fnv1a_64(const char *str) {
constexpr auto hash_fnv1a_64(const char *str) -> uint64_t {
assert(str != nullptr);
uint64_t hash = FNV_OFFSET_BASIS_64;
for (int i = 0; str[i] != '\0'; i++) {
......@@ -90,15 +90,15 @@ namespace fggl::util {
// debug-only functions
#ifndef NDEBUG
GUID intern_string(const char *str);
std::string guid_to_string(GUID guid);
auto intern_string(const char *str) -> GUID;
auto guid_to_string(GUID guid) -> std::string;
#endif
constexpr GUID make_guid(const char *str) {
constexpr auto make_guid(const char *str) -> GUID {
return GUID(hash_fnv1a_64(str));
}
inline GUID make_guid_rt(const char* str) {
inline auto make_guid_rt(const char* str) -> GUID {
#ifndef NDEBUG
return intern_string(str);
#else
......@@ -106,7 +106,7 @@ namespace fggl::util {
#endif
}
inline GUID make_guid_rt(const std::string &str) {
inline auto make_guid_rt(const std::string &str) -> GUID {
return make_guid_rt(str.c_str());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment