removed unnecessary explicit in some multi-arg constructors

This commit is contained in:
Guenter Obiltschnig
2014-09-10 16:44:36 +02:00
parent a815e0a90e
commit 67b206f663
7 changed files with 16 additions and 16 deletions

View File

@@ -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)

View File

@@ -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)):

View File

@@ -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.

View File

@@ -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.