Skip to content

Commit c0bf69c

Browse files
committed
Minor update for Windows build.
1 parent c60ef51 commit c0bf69c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
cd ${{ runner.workspace }}/build
4545
cmake "$env:GITHUB_WORKSPACE" `
4646
-G "Visual Studio 16 2019" -A x64 `
47-
-DEIGEN3_INCLUDE_DIR="C:/Program Files/Eigen/include/eigen3" `
4847
-DGoogleTest_DIR="C:/Program Files/GoogleTest" `
4948
-DBUILD_TESTS=ON `
5049
-DBUILD_EXAMPLES=ON

src/tinymesh/core/mesh.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ void Mesh::construct() {
127127
}
128128

129129
// Put vertex indices
130-
for (size_t i = 0; i < vertices_.size(); i++) {
130+
for (int i = 0; i < (int)vertices_.size(); i++) {
131131
vertices_[i]->index_ = i;
132132
}
133133

0 commit comments

Comments
 (0)