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_decode_bs_impl.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gr-vocoder/lib/cvsd_decode_bs_impl.cc') diff --git a/gr-vocoder/lib/cvsd_decode_bs_impl.cc b/gr-vocoder/lib/cvsd_decode_bs_impl.cc index 103ebfcc5d..85126f0f1b 100644 --- a/gr-vocoder/lib/cvsd_decode_bs_impl.cc +++ b/gr-vocoder/lib/cvsd_decode_bs_impl.cc @@ -71,10 +71,10 @@ cvsd_decode_bs_impl::cvsd_decode_bs_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_decode_bs_impl::~cvsd_decode_bs_impl() -- cgit v1.2.3