Skip to content

Commit

Permalink
fix(Data): warning: 'isNull' overrides a member function but is not m…
Browse files Browse the repository at this point in the history
…arked 'override' #4768
  • Loading branch information
aleks-f committed Nov 14, 2024
1 parent fe27933 commit db9ba69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Data/testsuite/src/Extractor.h
Original file line number Diff line number Diff line change
Expand Up @@ -419,10 +419,10 @@ class Extractor: public Poco::Data::AbstractExtractor
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)
{
Expand Down

0 comments on commit db9ba69

Please sign in to comment.