Skip to content

Commit

Permalink
Merge pull request #2 from pato-melowntech/pato/windows-build
Browse files Browse the repository at this point in the history
windows build fix
  • Loading branch information
pavelsevecek authored Apr 27, 2023
2 parents 0616d9b + 5204426 commit d4ad2ed
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 d4ad2ed

Please sign in to comment.