Revert "Use make_shared<>."
[dcpomatic.git] / test / audio_decoder_test.cc
index 92c99a378065389c800ba459682ecb6e785d8983..945773d1203fc24cda5b45432da94df5073a7d88 100644 (file)
@@ -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;