summaryrefslogtreecommitdiff
path: root/include/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-06-08 17:14:34 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-06-08 17:14:34 +0200
commit4d49c9601c9b3e26a336e08e057d299895683480 (patch)
tree469e3c18c2167db45cffec0a21a99abda8406c54 /include/connectivity
parent46c7ecf760bbea6541507c319e8e722f9b4ec712 (diff)
Let loplugin:passstuffbyref also look at fn defn not preceded by any decl
Change-Id: I752bc96d2d521d790e919283cabb14b6526626f4
Diffstat (limited to 'include/connectivity')
-rw-r--r--include/connectivity/FValue.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/connectivity/FValue.hxx b/include/connectivity/FValue.hxx
index 21933c7100b5..55341f828e92 100644
--- a/include/connectivity/FValue.hxx
+++ b/include/connectivity/FValue.hxx
@@ -120,7 +120,7 @@ namespace connectivity
operator=(_rRH);
}
- ORowSetValue(const float& _rRH)
+ ORowSetValue(float _rRH)
:m_eTypeKind(css::sdbc::DataType::FLOAT)
,m_bNull(true)
,m_bBound(true)
@@ -131,7 +131,7 @@ namespace connectivity
operator=(_rRH);
}
- ORowSetValue(const sal_Int8& _rRH)
+ ORowSetValue(sal_Int8 _rRH)
:m_eTypeKind(css::sdbc::DataType::TINYINT)
,m_bNull(true)
,m_bBound(true)
@@ -142,7 +142,7 @@ namespace connectivity
operator=(_rRH);
}
- ORowSetValue(const sal_uInt8& _rRH)
+ ORowSetValue(sal_uInt8 _rRH)
:m_eTypeKind(css::sdbc::DataType::TINYINT)
,m_bNull(true)
,m_bBound(true)
@@ -152,7 +152,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_Int16& _rRH)
+ ORowSetValue(sal_Int16 _rRH)
:m_eTypeKind(css::sdbc::DataType::SMALLINT)
,m_bNull(true)
,m_bBound(true)
@@ -162,7 +162,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_uInt16& _rRH)
+ ORowSetValue(sal_uInt16 _rRH)
:m_eTypeKind(css::sdbc::DataType::SMALLINT)
,m_bNull(true)
,m_bBound(true)
@@ -172,7 +172,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_Int32& _rRH)
+ ORowSetValue(sal_Int32 _rRH)
:m_eTypeKind(css::sdbc::DataType::INTEGER)
,m_bNull(true)
,m_bBound(true)
@@ -182,7 +182,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_uInt32& _rRH)
+ ORowSetValue(sal_uInt32 _rRH)
:m_eTypeKind(css::sdbc::DataType::INTEGER)
,m_bNull(true)
,m_bBound(true)
@@ -192,7 +192,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_Int64& _rRH)
+ ORowSetValue(sal_Int64 _rRH)
:m_eTypeKind(css::sdbc::DataType::BIGINT)
,m_bNull(true)
,m_bBound(true)
@@ -202,7 +202,7 @@ namespace connectivity
m_aValue.m_pString = nullptr;
operator=(_rRH);
}
- ORowSetValue(const sal_uInt64& _rRH)
+ ORowSetValue(sal_uInt64 _rRH)
:m_eTypeKind(css::sdbc::DataType::BIGINT)
,m_bNull(true)
,m_bBound(true)
@@ -213,7 +213,7 @@ namespace connectivity
operator=(_rRH);
}
- ORowSetValue(const bool& _rRH)
+ ORowSetValue(bool _rRH)
:m_eTypeKind(css::sdbc::DataType::BIT)
,m_bNull(true)
,m_bBound(true)