From 1f611fa58ba3860dab2494c4fd9de778935bd376 Mon Sep 17 00:00:00 2001 From: "cesar.ilharco" Date: Mon, 1 Feb 2016 03:09:15 -0800 Subject: [PATCH] Fixed minor issue: added missing semicolons to metric_recorder.cc Review URL: https://codereview.webrtc.org/1649353002 Cr-Commit-Position: refs/heads/master@{#11442} --- .../remote_bitrate_estimator/test/metric_recorder.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.cc b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.cc index 559757c0eb..b5a2ba3f15 100644 --- a/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.cc +++ b/webrtc/modules/remote_bitrate_estimator/test/metric_recorder.cc @@ -315,7 +315,7 @@ void MetricRecorder::PlotDelayHistogram(const std::string& title, int64_t percentile_5_ms = NthDelayPercentile(5); int64_t percentile_95_ms = NthDelayPercentile(95); - BWE_TEST_LOGGING_LABEL(5, title, "average_delay_(ms)", num_flows) + BWE_TEST_LOGGING_LABEL(5, title, "average_delay_(ms)", num_flows); BWE_TEST_LOGGING_ERRORBAR(5, bwe_name, average_delay_ms, percentile_5_ms, percentile_95_ms, "5th and 95th percentiles", flow_id_); @@ -337,7 +337,7 @@ void MetricRecorder::PlotLossHistogram(const std::string& title, const std::string& bwe_name, size_t num_flows, float global_loss_ratio) const { - BWE_TEST_LOGGING_LABEL(6, title, "packet_loss_ratio_(%)", num_flows) + BWE_TEST_LOGGING_LABEL(6, title, "packet_loss_ratio_(%)", num_flows); BWE_TEST_LOGGING_BAR(6, bwe_name, 100.0f * global_loss_ratio, flow_id_); BWE_TEST_LOGGING_LOG1("RESULTS >>> " + bwe_name + " Loss Ratio : ", "%f %%", @@ -347,7 +347,7 @@ void MetricRecorder::PlotLossHistogram(const std::string& title, void MetricRecorder::PlotObjectiveHistogram(const std::string& title, const std::string& bwe_name, size_t num_flows) const { - BWE_TEST_LOGGING_LABEL(7, title, "objective_function", num_flows) + BWE_TEST_LOGGING_LABEL(7, title, "objective_function", num_flows); BWE_TEST_LOGGING_BAR(7, bwe_name, ObjectiveFunction(), flow_id_); }