summaryrefslogtreecommitdiff
path: root/test/audio_decoder_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/audio_decoder_test.cc')
-rw-r--r--test/audio_decoder_test.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/audio_decoder_test.cc b/test/audio_decoder_test.cc
index 92c99a378..945773d12 100644
--- a/test/audio_decoder_test.cc
+++ b/test/audio_decoder_test.cc
@@ -28,7 +28,6 @@
#include "lib/audio_content.h"
#include "lib/film.h"
#include <boost/test/unit_test.hpp>
-#include <boost/make_shared.hpp>
#include <cassert>
#include <iostream>
@@ -36,7 +35,6 @@ using std::string;
using std::cout;
using std::min;
using boost::shared_ptr;
-using boost::make_shared;
class TestAudioContent : public Content
{
@@ -78,7 +76,7 @@ public:
_test_audio_content->audio_length() - _position
);
- shared_ptr<AudioBuffers> buffers = make_shared<AudioBuffers> (_test_audio_content->audio->stream()->channels(), N);
+ shared_ptr<AudioBuffers> buffers (new AudioBuffers (_test_audio_content->audio->stream()->channels(), N));
for (int i = 0; i < _test_audio_content->audio->stream()->channels(); ++i) {
for (int j = 0; j < N; ++j) {
buffers->data(i)[j] = j + _position;