Add a visibility specifier that's now needed

Following the introduction of 'Pianoroll::region_prop_change()' (commit #29833d75c9) the operator<< (for PBD::PropertyChange) now needs to be visible outside of libpbd
This commit is contained in:
John Emmas 2025-04-19 13:33:36 +01:00
parent 292e722758
commit d285ff365e

View file

@ -173,6 +173,6 @@ private:
}
namespace std {
ostream& operator<< (std::ostream& os, PBD::PropertyChange const & pc);
LIBPBD_API ostream& operator<< (std::ostream& os, PBD::PropertyChange const & pc);
}