Fix the build for older macOS.
[dcpomatic.git] / src / lib / audio_stream.h
index e50a53b8ad479b1baef0ab229853aa15cfd091a5..470d9c854a5acf34b1e91f4053560af4babff69e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2015-2016 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2015-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #ifndef DCPOMATIC_AUDIO_STREAM_H
 #define DCPOMATIC_AUDIO_STREAM_H
 
+
 #include "audio_mapping.h"
 #include "types.h"
 #include <boost/thread/mutex.hpp>
 
+
 struct audio_sampling_rate_test;
 
 class AudioStream
@@ -65,6 +68,8 @@ private:
        AudioMapping _mapping;
 };
 
-typedef boost::shared_ptr<AudioStream> AudioStreamPtr;
+
+typedef std::shared_ptr<AudioStream> AudioStreamPtr;
+
 
 #endif