Skip to content

Commit a2ab898

Browse files
committed
CI fixes
1 parent 13a691a commit a2ab898

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

include/openPMD/Datatype.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ Datatype stringToDatatype(const std::string &s);
790790
* @param dt Datatype to output
791791
* @return Reference to the stream
792792
*/
793-
std::ostream &operator<<(std::ostream &, openPMD::Datatype const &);
793+
std::ostream &operator<<(std::ostream &os, openPMD::Datatype const &dt);
794794

795795
template <typename T>
796796
constexpr auto datatypeIndex() -> size_t

include/openPMD/IO/AbstractIOHandler.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,8 @@ class AbstractIOHandler
332332
* @param params Parsed flush parameters
333333
* @return Future indicating completion state
334334
*/
335-
virtual std::future<void> flush_impl(internal::ParsedFlushParams &) = 0;
335+
virtual std::future<void>
336+
flush_impl(internal::ParsedFlushParams &params) = 0;
336337
}; // AbstractIOHandler
337338

338339
} // namespace openPMD

0 commit comments

Comments
 (0)