From 183a35ee554fd2034acbc5ac91e32abd046d5de1 Mon Sep 17 00:00:00 2001 From: Thomas Habets <thomas@habets.se> Date: Sat, 21 Dec 2019 19:38:44 +0000 Subject: Remove newlines from exception messages --- gr-vocoder/lib/cvsd_encode_sb_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-vocoder/lib/cvsd_encode_sb_impl.cc') diff --git a/gr-vocoder/lib/cvsd_encode_sb_impl.cc b/gr-vocoder/lib/cvsd_encode_sb_impl.cc index 26766fbf02..262ec0f5d3 100644 --- a/gr-vocoder/lib/cvsd_encode_sb_impl.cc +++ b/gr-vocoder/lib/cvsd_encode_sb_impl.cc @@ -70,10 +70,10 @@ cvsd_encode_sb_impl::cvsd_encode_sb_impl(short min_step, d_stepsize(min_step) { if (d_K > 32) - throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32\n"); + throw std::runtime_error("cvsd_decode_bs_impl: K must be <= 32"); if (d_J > d_K) - throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K\n"); + throw std::runtime_error("cvsd_decode_bs_impl: J must be <= K"); } cvsd_encode_sb_impl::~cvsd_encode_sb_impl() -- cgit v1.2.3