From b2dd46ccad4489798e1410e30f5ef3e0ee4f48b0 Mon Sep 17 00:00:00 2001 From: Francisco Paisana Date: Tue, 11 Aug 2020 20:20:57 +0100 Subject: [PATCH] remove extra space in to_string --- lib/include/srslte/adt/interval.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/include/srslte/adt/interval.h b/lib/include/srslte/adt/interval.h index 8e675906f..2dae7cf7d 100644 --- a/lib/include/srslte/adt/interval.h +++ b/lib/include/srslte/adt/interval.h @@ -60,7 +60,7 @@ public: std::string to_string() const { - std::string s = "[" + std::to_string(start) + ", " + std::to_string(stop) + ")"; + std::string s = "[" + std::to_string(start) + "," + std::to_string(stop) + ")"; return s; } };