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.
2 parents 414fc82 + 6ba2a49 commit 717c4a6Copy full SHA for 717c4a6
.github/workflows/ci.yml
@@ -5,7 +5,7 @@ on:
5
pull_request:
6
7
env:
8
- WX_VERSION: '3.2.4'
+ WX_VERSION: '3.2.8.1'
9
DEFAULT_BRANCH: develop
10
11
include/wex/matrix.h
@@ -175,8 +175,8 @@ class wxMatrix {
175
wxMatrix<T> old(*this);
176
Resize(nr, nc);
177
Fill(val);
178
- for (size_t r = 0; r < nr && r < old.nrows(); r++)
179
- for (size_t c = 0; c < nc && c < old.ncols(); c++)
+ for (size_t r = 0; r < nr && r < old.Rows(); r++)
+ for (size_t c = 0; c < nc && c < old.Cols(); c++)
180
At(r, c) = old(r, c);
181
}
182
0 commit comments