]> git.sesse.net Git - casparcg/blobdiff - core/producer/text/utils/freetype_library.h
Move from boost::thread to std::thread for nearly everything.
[casparcg] / core / producer / text / utils / freetype_library.h
index fe33fbda62b3ff0d2350e6f6ad6f27ff81b370a6..1463f936715a6afb189b4e2f0670cf694e064180 100644 (file)
@@ -27,6 +27,7 @@
 #include <ft2build.h>
 #include FT_FREETYPE_H
 
+#include <memory>
 #include <string>
 #include <type_traits>
 
@@ -35,7 +36,7 @@ namespace caspar { namespace core { namespace text {
 struct freetype_exception : virtual caspar_exception { };
 struct expected_freetype_exception : virtual user_error { };
 
-spl::shared_ptr<std::remove_pointer<FT_Library>::type> get_lib_for_thread();
-spl::shared_ptr<std::remove_pointer<FT_Face>::type> get_new_face(const std::string& font_file, const std::string& font_name = "");
+std::shared_ptr<std::remove_pointer<FT_Library>::type> get_lib_for_thread();
+std::shared_ptr<std::remove_pointer<FT_Face>::type> get_new_face(const std::string& font_file, const std::string& font_name = "");
 
 }}}