chore(formatting): put newline after _FORCE_INLINE_ for PlannerNodeHasher::hash

This commit is contained in:
Sara 2024-03-30 23:03:39 +01:00
parent 60df329d1b
commit 4847d82533

View file

@ -68,7 +68,8 @@ private:
};
struct PlannerNodeHasher {
static _FORCE_INLINE_ uint32_t hash(godot::goap::PlannerNode const &node) {
static _FORCE_INLINE_
uint32_t hash(godot::goap::PlannerNode const &node) {
uint32_t hash{1};
for(KeyValue<StringName, Variant> const &kvp : node.state) {
hash = hash_murmur3_one_32(kvp.key.hash(), hash);