Skip to content

Commit

Permalink
Merge pull request #159 from pierotofy/winfix
Browse files Browse the repository at this point in the history
Don't include stdc++
  • Loading branch information
pierotofy authored Feb 7, 2025
2 parents a911493 + 4e87a90 commit c4bbc97
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,10 @@ jobs:
if [[ "${{ matrix.os }}" == "macos-13" ]]; then
# brew install in macos-13 runner image is broken
# https://github.com/actions/runner-images/issues/9471
brew unlink [email protected]
brew unlink [email protected]
brew uninstall --force azure-cli
brew uninstall --force aws-sam-cli
brew uninstall --force pipx
brew uninstall --force [email protected]
brew install --overwrite [email protected]
fi
brew install \
Expand Down
1 change: 0 additions & 1 deletion model.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include <iostream>
#include <torch/torch.h>
#include <torch/csrc/api/include/torch/version.h>
#include <ATen/ATen.h>
#include "nerfstudio.hpp"
#include "kdtree_tensor.hpp"
#include "spherical_harmonics.hpp"
Expand Down
3 changes: 1 addition & 2 deletions openmvg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
#include "tensor_math.hpp"
#include <stdexcept>
#include <string>
#include <bits/stdc++.h>

namespace fs = std::filesystem;
using json = nlohmann::json;
Expand Down Expand Up @@ -325,4 +324,4 @@ InputData inputDataFromOpenMVG(const std::string &projectRoot){
return ret;
}

}
}

0 comments on commit c4bbc97

Please sign in to comment.