From 9cdb76ebff291001528f1adc74f67966e24c08b5 Mon Sep 17 00:00:00 2001 From: OBATA Akio Date: Sat, 22 Jan 2022 14:26:43 +0900 Subject: ksvg/libtext2path: use c++11 std:shared_ptr instead of bundled old boost one Signed-off-by: OBATA Akio --- ksvg/impl/libs/libtext2path/src/Converter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ksvg/impl/libs/libtext2path/src/Converter.h') diff --git a/ksvg/impl/libs/libtext2path/src/Converter.h b/ksvg/impl/libs/libtext2path/src/Converter.h index 864812be..7f76533f 100644 --- a/ksvg/impl/libs/libtext2path/src/Converter.h +++ b/ksvg/impl/libs/libtext2path/src/Converter.h @@ -44,8 +44,8 @@ namespace T2P class GlyphLayoutParams; class GlyphRenderParams; - typedef myboost::shared_ptr SharedFont; - typedef myboost::shared_ptr SharedGlyph; + typedef std::shared_ptr SharedFont; + typedef std::shared_ptr SharedGlyph; class Converter { -- cgit v1.2.1