Skip to content

Commit 4155ed6

Browse files
committed
FIX: Fix missing operator<< for Cmbp1Msg
1 parent 9dc8c8b commit 4155ed6

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 0.35.1 - TBD
4+
5+
### Bug fixes
6+
- Added missing `operator<<` and `ToString` implementations for `Cmbp1Msg`
7+
38
## 0.35.0 - 2025-05-13
49

510
### Enhancements

include/databento/record.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -770,6 +770,8 @@ std::string ToString(const Mbp10Msg& mbp_msg);
770770
std::ostream& operator<<(std::ostream& stream, const Mbp10Msg& mbp_msg);
771771
std::string ToString(const BboMsg& bbo_msg);
772772
std::ostream& operator<<(std::ostream& stream, const BboMsg& bbo_msg);
773+
std::string ToString(const Cmbp1Msg& cmbp1_msg);
774+
std::ostream& operator<<(std::ostream& stream, const Cmbp1Msg& cmbp1_msg);
773775
std::string ToString(const CbboMsg& cbbo_msg);
774776
std::ostream& operator<<(std::ostream& stream, const CbboMsg& cbbo_msg);
775777
std::string ToString(const TradeMsg& trade_msg);

0 commit comments

Comments
 (0)