mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 10:13:51 +01:00
fix(Data): warning: 'isNull' overrides a member function but is not marked 'override' #4768
This commit is contained in:
parent
fe27933a12
commit
db9ba69f7d
@ -419,10 +419,10 @@ public:
|
||||
bool extract(std::size_t pos, Poco::Nullable<UUID>& val) override;
|
||||
/// Extracts a Nullable<UUID>.
|
||||
|
||||
bool isNull(std::size_t col, std::size_t row = -1);
|
||||
bool isNull(std::size_t col, std::size_t row = -1) override;
|
||||
/// Returns true if the current row value at pos column is null.
|
||||
|
||||
void reset();
|
||||
void reset() override;
|
||||
|
||||
void setString(const std::string& str)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user