From b1dc9c3a2f7e55c9afc5bf2d5b465371b048e14f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 10 Aug 2016 16:38:33 +0100 Subject: Remove all use of stringstream in an attempt to fix the suspected thread-unsafe crash bugs on OS X. --- test/audio_analysis_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/audio_analysis_test.cc') diff --git a/test/audio_analysis_test.cc b/test/audio_analysis_test.cc index 278ea06d9..c960884a1 100644 --- a/test/audio_analysis_test.cc +++ b/test/audio_analysis_test.cc @@ -82,7 +82,7 @@ BOOST_AUTO_TEST_CASE (audio_analysis_serialisation_test) BOOST_CHECK (b.sample_peak ()); BOOST_CHECK_CLOSE (b.sample_peak().get(), peak, 1); BOOST_CHECK (b.sample_peak_time ()); - BOOST_CHECK_EQUAL (b.sample_peak_time().get(), peak_time); + BOOST_CHECK_EQUAL (b.sample_peak_time().get().get(), peak_time.get()); } static void -- cgit v1.2.3