Skip to content

Commit

Permalink
Merge pull request #29 from njoy/feature/StringRange
Browse files Browse the repository at this point in the history
Wrapping any_view of string
  • Loading branch information
whaeck authored May 16, 2024
2 parents 5a2c0e0 + 97f6723 commit f0c91b6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion python/src/tools.python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,8 @@ PYBIND11_MODULE( tools, module ) {
"any_view< any_view< any_view< double, random_access >, random_access >, random_access >" );
wrapBasicRandomAccessAnyViewOf< std::complex< double > >(
viewmodule,
"any_view< std::complex< double , random_access >" );
"any_view< std::complex< double >, random_access >" );
wrapBasicRandomAccessAnyViewOf< std::string >(
viewmodule,
"any_view< std::string, random_access >" );
}

0 comments on commit f0c91b6

Please sign in to comment.