Skip to content

Commit

Permalink
windows build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pato-melowntech committed Feb 24, 2023
1 parent c7e8b87 commit 5204426
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,19 +119,19 @@ class Vector {
return Dim;
}

T* begin() {
auto begin() {
return values_.begin();
}

T* end() {
auto end() {
return values_.end();
}

const T* begin() const {
const auto begin() const {
return values_.begin();
}

const T* end() const {
const auto end() const {
return values_.end();
}

Expand Down

0 comments on commit 5204426

Please sign in to comment.