Skip to content

Commit

Permalink
format + tidy + imgui iwyu + macos13 runner
Browse files Browse the repository at this point in the history
  • Loading branch information
krupkat committed Dec 31, 2024
1 parent 2bacf1a commit 2f21c83
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ jobs:

strategy:
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion external/imgui
Submodule imgui updated 1 files
+1 −1 imgui.h
6 changes: 3 additions & 3 deletions misc/build/build-macos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ cmake -B build \
-DCMAKE_BUILD_TYPE=$BUILD_TYPE \
-DCMAKE_INSTALL_PREFIX=install \
`cat ../misc/build/opencv-minimal-flags.txt`
cmake --build build --target install -j `sysctl -n hw.physicalcpu`
cmake --build build --target install -j `sysctl -n hw.logicalcpu`
cd ..


Expand All @@ -27,7 +27,7 @@ cd exiv2
cmake -B build \
-DCMAKE_INSTALL_PREFIX=install \
`cat ../misc/build/exiv2-minimal-flags.txt`
cmake --build build --target install -j `sysctl -n hw.physicalcpu`
cmake --build build --target install -j `sysctl -n hw.logicalcpu`
cd ..

cmake -B build \
Expand All @@ -38,7 +38,7 @@ cmake -B build \
-DOpenCV_ROOT=opencv/install \
-Dexiv2_ROOT=exiv2/install

cmake --build build -j `sysctl -n hw.physicalcpu` --target install
cmake --build build -j `sysctl -n hw.logicalcpu` --target install
cd build
ctest --output-on-failure
cd ..
Expand Down
2 changes: 1 addition & 1 deletion xpano/gui/backends/base.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

namespace xpano::gui::backends {

TexDeleter::TexDeleter(Base* backend) : backend_(backend){};
TexDeleter::TexDeleter(Base* backend) : backend_(backend) {};

void TexDeleter::operator()(ImTextureID tex) {
if (backend_ != nullptr) {
Expand Down
2 changes: 1 addition & 1 deletion xpano/utils/fmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <spdlog/fmt/fmt.h>

#if FMT_VERSION >= 110000
#include <spdlog/fmt/bundled/ranges.h> // fmt::join moved here in fmt 11.0.0
#include <spdlog/fmt/bundled/ranges.h> // fmt::join moved here in fmt 11.0.0
#endif

#else
Expand Down

0 comments on commit 2f21c83

Please sign in to comment.