Skip to content

Commit

Permalink
moving to tools v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whaeck committed Apr 23, 2024
1 parent c0a1f89 commit 9f71b1c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmake/develop_dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ include( FetchContent )

FetchContent_Declare( tools
GIT_REPOSITORY https://github.com/njoy/tools
GIT_TAG feature/python-views
GIT_TAG v0.3.0
GIT_SHALLOW TRUE
)

Expand Down
2 changes: 1 addition & 1 deletion cmake/release_dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ set( SPDLOG_BUILD_PIC CACHE INTERNAL BOOL ON )

FetchContent_Declare( tools
GIT_REPOSITORY https://github.com/njoy/tools
GIT_TAG 14596b303de7413167f4f4c030e2923cabd3f2a3
GIT_TAG 368dbd9bd44754de616c46ffed0f80d2d16d8360 # tag: v0.3.0
)

#######################################################################
Expand Down
4 changes: 2 additions & 2 deletions src/NDItk/base/SubListRecord.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class SubListRecord {
*/
auto values() const {

return nano::ranges::subrange( this->begin(), this->end() );
return njoy::tools::std20::ranges::subrange( this->begin(), this->end() );
}

/**
Expand All @@ -100,7 +100,7 @@ class SubListRecord {
const auto left = this->iterator( index );
const auto right = length > 0 ? this->iterator( index + length )
: left;
return nano::ranges::subrange( left, right );
return njoy::tools::std20::ranges::subrange( left, right );
}

public:
Expand Down

0 comments on commit 9f71b1c

Please sign in to comment.