mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
fix macos compilation and fix requires expression in clang format
This commit is contained in:
parent
6a9046d406
commit
73588e9a3d
2 changed files with 4 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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)) {
|
||||
|
|
Loading…
Add table
Reference in a new issue