mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
removed unnecessary explicit in some multi-arg constructors
This commit is contained in:
@@ -41,7 +41,7 @@ class BulkBinding: public AbstractBinding
|
||||
/// Bulk binding support is provided only for std::vector.
|
||||
{
|
||||
public:
|
||||
explicit BulkBinding(const T& val, Poco::UInt32 bulkSize, const std::string& name = "", Direction direction = PD_IN):
|
||||
BulkBinding(const T& val, Poco::UInt32 bulkSize, const std::string& name = "", Direction direction = PD_IN):
|
||||
AbstractBinding(name, direction, bulkSize),
|
||||
_val(val),
|
||||
_bound(false)
|
||||
|
||||
@@ -153,7 +153,7 @@ public:
|
||||
typedef InternalBulkExtraction<ValType> Type;
|
||||
typedef SharedPtr<Type> Ptr;
|
||||
|
||||
explicit InternalBulkExtraction(C& result,
|
||||
InternalBulkExtraction(C& result,
|
||||
Column<C>* pColumn,
|
||||
Poco::UInt32 limit,
|
||||
const Position& pos = Position(0)):
|
||||
|
||||
@@ -511,7 +511,7 @@ public:
|
||||
typedef SharedPtr<Type> Ptr;
|
||||
|
||||
|
||||
explicit InternalExtraction(C& result, Column<C>* pColumn, const Position& pos = Position(0)):
|
||||
InternalExtraction(C& result, Column<C>* pColumn, const Position& pos = Position(0)):
|
||||
Extraction<C>(result, ValType(), pos),
|
||||
_pColumn(pColumn)
|
||||
/// Creates InternalExtraction.
|
||||
|
||||
@@ -82,12 +82,12 @@ public:
|
||||
RowFormatter::Ptr pRowFormatter = 0);
|
||||
/// Creates the RecordSet.
|
||||
|
||||
explicit RecordSet(Session& rSession,
|
||||
RecordSet(Session& rSession,
|
||||
const std::string& query,
|
||||
RowFormatter::Ptr pRowFormatter = 0);
|
||||
/// Creates the RecordSet.
|
||||
|
||||
explicit RecordSet(Session& rSession,
|
||||
RecordSet(Session& rSession,
|
||||
const std::string& query,
|
||||
const RowFormatter& rowFormatter);
|
||||
/// Creates the RecordSet.
|
||||
|
||||
Reference in New Issue
Block a user