mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-06 10:55:59 +02:00
fixed unused warnings
This commit is contained in:
parent
d70e01f07e
commit
c8af3f1c92
@ -125,7 +125,7 @@ public:
|
|||||||
/// Returns the force empty string flag.
|
/// Returns the force empty string flag.
|
||||||
|
|
||||||
template <typename T>
|
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.
|
/// Utility function to determine the nullness of the value.
|
||||||
/// This generic version always returns default value
|
/// This generic version always returns default value
|
||||||
/// (i.e. does nothing). The std::string overload does
|
/// (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.");
|
throw NotImplementedException("Check for null values not implemented.");
|
||||||
}
|
}
|
||||||
|
@ -89,7 +89,7 @@ public:
|
|||||||
return 1u;
|
return 1u;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool isNull(std::size_t row = 0) const
|
bool isNull(std::size_t /*row*/ = 0) const
|
||||||
{
|
{
|
||||||
return _null;
|
return _null;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user