Kaydet (Commit) c06be534 authored tarafından Michael Stahl's avatar Michael Stahl

connectivity: replace boost::remove_reference with std::remove_reference

Change-Id: I7c11fcdaf8065fa86d224ad2fab88b0bcb907255
üst 1a6a4750
......@@ -52,7 +52,6 @@
#include <typeinfo>
#include <utility>
#include <vector>
#include <boost/intrusive_ptr.hpp>
#include <boost/optional.hpp>
#include <osl/diagnose.h>
#include <osl/doublecheckedlocking.h>
......
......@@ -54,7 +54,6 @@
#include <unordered_map>
#include <utility>
#include <vector>
#include <boost/intrusive_ptr.hpp>
#include <osl/conditn.h>
#include <osl/conditn.hxx>
#include <osl/diagnose.h>
......
......@@ -38,7 +38,6 @@
#include <utility>
#include <vector>
#include <boost/optional.hpp>
#include <boost/type_traits.hpp>
#include <osl/diagnose.h>
#include <osl/mutex.hxx>
#include <osl/thread.h>
......
......@@ -23,8 +23,6 @@
#include <algorithm>
#include <cstddef>
#include <string.h>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/remove_reference.hpp>
#include <osl/diagnose.h>
#include <osl/mutex.hxx>
#include <osl/process.h>
......
......@@ -25,7 +25,6 @@
#include <comphelper/extract.hxx>
#include <com/sun/star/io/XInputStream.hpp>
#include <rtl/ustrbuf.hxx>
#include <boost/type_traits.hpp>
using namespace ::dbtools;
using namespace ::com::sun::star::sdbc;
......
......@@ -37,8 +37,7 @@
#include "resource/common_res.hrc"
#include <connectivity/sqlparse.hxx>
#include <memory>
#include <boost/type_traits/remove_reference.hpp>
#include <boost/type_traits/is_same.hpp>
#include <type_traits>
using namespace ::comphelper;
using namespace connectivity;
......@@ -299,7 +298,7 @@ template <typename T> void OPreparedStatement::setScalarParameter(const sal_Int3
::osl::MutexGuard aGuard( m_aMutex );
setParameterPre(parameterIndex);
typedef typename boost::remove_reference< T >::type TnoRef;
typedef typename std::remove_reference<T>::type TnoRef;
TnoRef *bindBuf = static_cast< TnoRef* >( allocBindBuf(parameterIndex, sizeof(i_Value)) );
*bindBuf = i_Value;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment