We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c60ef51 commit c0bf69cCopy full SHA for c0bf69c
.github/workflows/windows.yml
@@ -44,7 +44,6 @@ jobs:
44
cd ${{ runner.workspace }}/build
45
cmake "$env:GITHUB_WORKSPACE" `
46
-G "Visual Studio 16 2019" -A x64 `
47
- -DEIGEN3_INCLUDE_DIR="C:/Program Files/Eigen/include/eigen3" `
48
-DGoogleTest_DIR="C:/Program Files/GoogleTest" `
49
-DBUILD_TESTS=ON `
50
-DBUILD_EXAMPLES=ON
src/tinymesh/core/mesh.cpp
@@ -127,7 +127,7 @@ void Mesh::construct() {
127
}
128
129
// Put vertex indices
130
- for (size_t i = 0; i < vertices_.size(); i++) {
+ for (int i = 0; i < (int)vertices_.size(); i++) {
131
vertices_[i]->index_ = i;
132
133
0 commit comments