diff options
Diffstat (limited to 'xbmc/interfaces/json-rpc/JSONServiceDescription.h')
-rw-r--r-- | xbmc/interfaces/json-rpc/JSONServiceDescription.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/interfaces/json-rpc/JSONServiceDescription.h b/xbmc/interfaces/json-rpc/JSONServiceDescription.h index b8e895c74c..c033fccf4e 100644 --- a/xbmc/interfaces/json-rpc/JSONServiceDescription.h +++ b/xbmc/interfaces/json-rpc/JSONServiceDescription.h @@ -22,14 +22,14 @@ #include <string> #include <vector> #include <limits> -#include <boost/shared_ptr.hpp> +#include <memory> #include "JSONUtils.h" namespace JSONRPC { class JSONSchemaTypeDefinition; - typedef boost::shared_ptr<JSONSchemaTypeDefinition> JSONSchemaTypeDefinitionPtr; + typedef std::shared_ptr<JSONSchemaTypeDefinition> JSONSchemaTypeDefinitionPtr; /*! \ingroup jsonrpc |