Skip to content

Commit

Permalink
Merge branch 'main' into log-levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Fleeym committed Jan 13, 2025
2 parents 5ea1443 + 5f64d77 commit 9e81be5
Show file tree
Hide file tree
Showing 131 changed files with 835 additions and 245 deletions.
5 changes: 2 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ endif()

set(MAT_JSON_AS_INTERFACE ON)
CPMAddPackage("gh:geode-sdk/[email protected]")
CPMAddPackage("gh:geode-sdk/json@3.1.5")
CPMAddPackage("gh:geode-sdk/json@3.2.0")
CPMAddPackage("gh:fmtlib/fmt#11.0.2")

target_compile_definitions(${PROJECT_NAME} INTERFACE MAT_JSON_DYNAMIC=1)
Expand Down Expand Up @@ -332,7 +332,6 @@ elseif (EXISTS ${GEODE_PLATFORM_BIN_PATH})
else()
message(FATAL_ERROR
"No valid loader binary to link to! Install pre-built binaries with `geode sdk install-binaries`, "
"or build Geode from source and add `set(GEODE_LINK_NIGHTLY ON)` to your CMakeLists.txt "
"in the line before calling add_subdirectory for Geode."
"or build Geode from source."
)
endif()
1 change: 1 addition & 0 deletions loader/include/Geode/Loader.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include "loader/Log.hpp"
#include "loader/Mod.hpp"
#include "loader/ModEvent.hpp"
#include "loader/EventV2.hpp"
#include "loader/Setting.hpp"
#include "loader/Dirs.hpp"

Expand Down
2 changes: 1 addition & 1 deletion loader/include/Geode/c++stl/gnustl/stl_algobase.h
Original file line number Diff line number Diff line change
Expand Up @@ -990,7 +990,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
typename iterator_traits<_ForwardIterator>::value_type, _Tp>)
__glibcxx_requires_partitioned_lower(__first, __last, __val);

return std::__lower_bound(__first, __last, __val,
return geode::stl::__lower_bound(__first, __last, __val,
__gnu_cxx::__ops::__iter_less_val());
}

Expand Down
Loading

0 comments on commit 9e81be5

Please sign in to comment.