Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
Signed-off-by: Vlad Gheorghiu <vsoftco@gmail.com>
  • Loading branch information
vsoftco committed Jan 21, 2025
1 parent 546a582 commit 4ac5dcd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@ endif()

# Uninstall
# https://gitlab.kitware.com/cmake/community/-/wikis/FAQ#can-i-do-make-uninstall-with-cmake
# UNIX/Linux: sudo cmake --build build --target uninstall Windows: cmake
# --build build --target uninstall
#
# UNIX/Linux: sudo cmake --build build --target uninstall
#
# Windows: cmake --build build --target uninstall
if(NOT TARGET uninstall)
configure_file(
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/staq_uninstall.cmake.in"
Expand Down
4 changes: 3 additions & 1 deletion include/staq/grid_synth/mat_vec_2x2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ class col_vec2_t {
return {col_[0] + rhs.col_[0], col_[1] + rhs.col_[1]};
}

bool operator==(const col_vec2_t& other) const { return col_ == other.row; }
bool operator==(const col_vec2_t& other) const {
return col_ == other.col_;
}

bool operator!=(const col_vec2_t& other) const { return !(*this == other); }

Expand Down

0 comments on commit 4ac5dcd

Please sign in to comment.