diff options
Diffstat (limited to 'dbaccess/source/sdbtools/connection/objectnames.cxx')
-rw-r--r-- | dbaccess/source/sdbtools/connection/objectnames.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/sdbtools/connection/objectnames.cxx b/dbaccess/source/sdbtools/connection/objectnames.cxx index 500a6037a717..91b406547f19 100644 --- a/dbaccess/source/sdbtools/connection/objectnames.cxx +++ b/dbaccess/source/sdbtools/connection/objectnames.cxx @@ -35,7 +35,7 @@ #include <rtl/ustrbuf.hxx> #include <boost/noncopyable.hpp> -#include <boost/shared_ptr.hpp> +#include <memory> namespace sdbtools { @@ -69,7 +69,7 @@ namespace sdbtools virtual ~INameValidation() { } }; - typedef ::boost::shared_ptr< INameValidation > PNameValidation; + typedef std::shared_ptr< INameValidation > PNameValidation; // PlainExistenceCheck class PlainExistenceCheck : public INameValidation |