From 83b5fdf5692b69324483d4a09c5652a5f9c8a65c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 21 Jun 2022 17:33:04 -0600 Subject: [PATCH] fix unused code warning --- libs/ardour/ltc_slave.cc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libs/ardour/ltc_slave.cc b/libs/ardour/ltc_slave.cc index 8b3a4eb966..cd48abe372 100644 --- a/libs/ardour/ltc_slave.cc +++ b/libs/ardour/ltc_slave.cc @@ -264,6 +264,8 @@ LTC_TransportMaster::equal_ltc_sample_time(LTCFrame *a, LTCFrame *b) { } return true; } + +#if 0 static ostream& operator<< (ostream& ostr, LTCFrame& a) { ostr @@ -279,7 +281,9 @@ static ostream& operator<< (ostream& ostr, LTCFrame& a) ; return ostr; } +#endif +#if 0 static ostream& operator<< (ostream& ostr, SMPTETimecode& t) { for (size_t i = 0; i < sizeof (t.timezone); ++i) { @@ -296,6 +300,7 @@ static ostream& operator<< (ostream& ostr, SMPTETimecode& t) ; return ostr; } +#endif bool LTC_TransportMaster::detect_discontinuity(LTCFrameExt *sample, int fps, bool fuzzy)