Skip to content

Commit

Permalink
Update NEWS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtv committed Feb 19, 2020
1 parent ffc5f23 commit 8f2915b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
7.0.2
- New query function: `query_value`, queries and converts a single value.
- A `stream_from` stream can now be iterated.
- More callable types qualify as transactors, thanks to `std::invoke`.
7.0.1
- Windows build fixes.
- Documentation for writing your own string conversions.
Expand Down
2 changes: 1 addition & 1 deletion include/pqxx/stream_from.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public:
*
* Do not call this yourself. Use it like "for (auto data : stream.iter())".
*/
template<typename... TYPE> [[nodiscard]] auto iter()
template<typename... TYPE>[[nodiscard]] auto iter()
{
return pqxx::internal::stream_input_iteration<TYPE...>{*this};
}
Expand Down

0 comments on commit 8f2915b

Please sign in to comment.