Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 1, 2024
1 parent 461b4c1 commit 98d87d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ void register_io(py::module& m) {
.def(py::init<std::string>())
.def("__str__",
#if __cplusplus > 201703L && _GLIBCXX_USE_CXX11_ABI
(std::string (std::stringstream::*)() const &)
(std::string(std::stringstream::*)() const&)
#else
(std::string (std::stringstream::*)() const)
(std::string(std::stringstream::*)() const)
#endif
& std::stringstream::str);
&std::stringstream::str);

py::class_<Reader>(m, "Reader")
// clang-format off
Expand Down

0 comments on commit 98d87d3

Please sign in to comment.