Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 584824 | Differences between
and this patch

Collapse All | Expand All

(-)jsoncpp-0.10.6-orig/src/lib_json/json_reader.cpp (-1 / +1 lines)
Lines 44-50 Link Here
44
namespace Json {
44
namespace Json {
45
45
46
#if __GNUC__ >= 6
46
#if __GNUC__ >= 6
47
typedef std::scoped_ptr<CharReader> const  CharReaderPtr;
47
typedef typename std::unique_ptr<CharReader> const  CharReaderPtr;
48
#else
48
#else
49
typedef std::auto_ptr<CharReader>          CharReaderPtr;
49
typedef std::auto_ptr<CharReader>          CharReaderPtr;
50
#endif
50
#endif
(-)jsoncpp-0.10.6-orig/src/lib_json/json_writer.cpp (-1 / +1 lines)
Lines 55-61 Link Here
55
namespace Json {
55
namespace Json {
56
56
57
#if __GNUC__ >= 6
57
#if __GNUC__ >= 6
58
typedef std::scoped_ptr<StreamWriter> const  StreamWriterPtr;
58
typedef typename std::unique_ptr<StreamWriter> const  StreamWriterPtr;
59
#else
59
#else
60
typedef std::auto_ptr<StreamWriter>          StreamWriterPtr;
60
typedef std::auto_ptr<StreamWriter>          StreamWriterPtr;
61
#endif
61
#endif

Return to bug 584824