fixed unused warnings

This commit is contained in:
Günter Obiltschnig 2018-08-31 10:16:37 +02:00
parent d70e01f07e
commit c8af3f1c92
2 changed files with 68 additions and 68 deletions

View File

@ -125,7 +125,7 @@ public:
/// Returns the force empty string flag.
template <typename T>
bool isValueNull(const T& str, bool deflt)
bool isValueNull(const T& /*str*/, bool deflt)
/// Utility function to determine the nullness of the value.
/// This generic version always returns default value
/// (i.e. does nothing). The std::string overload does
@ -207,7 +207,7 @@ inline Poco::UInt32 AbstractExtraction::getLimit() const
}
inline bool AbstractExtraction::isNull(std::size_t row) const
inline bool AbstractExtraction::isNull(std::size_t /*row*/) const
{
throw NotImplementedException("Check for null values not implemented.");
}

View File

@ -89,7 +89,7 @@ public:
return 1u;
}
bool isNull(std::size_t row = 0) const
bool isNull(std::size_t /*row*/ = 0) const
{
return _null;
}