Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
mattldawson committed May 20, 2024
1 parent fefe388 commit 4986795
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmake/test_util.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function(create_standard_test)
endfunction(create_standard_test)

################################################################################
# build and add a standard test (one linked to the micm library)
# build and add a standard test (one linked to the tuvx library)

function(create_standard_cxx_test)
set(prefix TEST)
Expand Down
4 changes: 2 additions & 2 deletions include/tuvx/profile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ namespace tuvx {
Profile() = delete;

/// Constructor
template<typename U>
Profile(const std::string& units, size_t number_of_columns, const Grid<U>& grid)
template<typename GridPolicy>
Profile(const std::string& units, size_t number_of_columns, const GridPolicy& grid)
: units_(units),
mid_point_values_(grid.mid_points_.Size1(), number_of_columns),
edge_values_(grid.edges_.Size1(), number_of_columns) {}
Expand Down

0 comments on commit 4986795

Please sign in to comment.