This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Alexander Chemeris gerrit-no-reply at lists.osmocom.orgAlexander Chemeris has submitted this change and it was merged.
Change subject: radioBuffer: Remove extra ; at the end of inline function definitions.
......................................................................
radioBuffer: Remove extra ; at the end of inline function definitions.
Change-Id: I8911adf0a0bb1ae828ac9cdf1a76c904639f6c06
---
M Transceiver52M/radioBuffer.h
1 file changed, 4 insertions(+), 4 deletions(-)
Approvals:
Tom Tsou: Looks good to me, approved
Harald Welte: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/Transceiver52M/radioBuffer.h b/Transceiver52M/radioBuffer.h
index afb6e63..e5aa315 100644
--- a/Transceiver52M/radioBuffer.h
+++ b/Transceiver52M/radioBuffer.h
@@ -9,10 +9,10 @@
~RadioBuffer();
- const size_t getSegmentLen() { return segmentLen; };
- const size_t getNumSegments() { return numSegments; };
- const size_t getAvailSamples() { return availSamples; };
- const size_t getAvailSegments() { return availSamples / segmentLen; };
+ const size_t getSegmentLen() { return segmentLen; }
+ const size_t getNumSegments() { return numSegments; }
+ const size_t getAvailSamples() { return availSamples; }
+ const size_t getAvailSegments() { return availSamples / segmentLen; }
const size_t getFreeSamples()
{
--
To view, visit https://gerrit.osmocom.org/2127
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I8911adf0a0bb1ae828ac9cdf1a76c904639f6c06
Gerrit-PatchSet: 3
Gerrit-Project: osmo-trx
Gerrit-Branch: master
Gerrit-Owner: Alexander Chemeris <Alexander.Chemeris at gmail.com>
Gerrit-Reviewer: Alexander Chemeris <Alexander.Chemeris at gmail.com>
Gerrit-Reviewer: Harald Welte <laforge at gnumonks.org>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Tom Tsou <tom at tsou.cc>