fix macos compilation and fix requires expression in clang format

This commit is contained in:
altalk23 2022-11-09 21:23:52 +03:00 committed by alk
parent 6a9046d406
commit 73588e9a3d
2 changed files with 4 additions and 2 deletions

View file

@ -84,6 +84,7 @@ IndentCaseLabels: true
IndentExternBlock: Indent
IndentGotoLabels: true
IndentPPDirectives: BeforeHash
IndentRequiresClause: false
IndentWrappedFunctionNames: false
# InsertBraces: true
InsertTrailingCommas: None
@ -107,6 +108,7 @@ PenaltyIndentedWhitespace: 0
QualifierAlignment: Right
RequiresClausePosition: OwnLine
ReflowComments: true
SeparateDefinitionBlocks: Always

View file

@ -1,6 +1,7 @@
#include "../ui/internal/info/ModInfoLayer.hpp"
#include "../ui/internal/list/ModListLayer.hpp"
#include <Geode/binding/CCLabelBMFont.hpp>
#include <Geode/utils/cocos.hpp>
#include <Index.hpp>
#include <InternalLoader.hpp>
@ -11,8 +12,7 @@ USE_GEODE_NAMESPACE();
#pragma warning(disable : 4217)
template <class T = CCNode>
requires std::is_base_of_v<CCNode, T>
requires std::is_base_of_v<CCNode, T>
T* setIDSafe(CCNode* node, int index, char const* id) {
if constexpr (std::is_same_v<CCNode, T>) {
if (auto child = getChild(node, index)) {