We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1317c98 commit 94eeb79Copy full SHA for 94eeb79
src/cswriter.cc
@@ -100,3 +100,8 @@ void CovWriter::flush()
100
{
101
d->str.flush();
102
}
103
+
104
+// only to prevent AbstractWriter::setScanProps() from printing a warning
105
+void CovWriter::setScanProps(const TScanProps &)
106
+{
107
+}
src/cswriter.hh
@@ -29,6 +29,7 @@ class CovWriter: public AbstractWriter {
29
30
virtual void handleDef(const Defect &def);
31
virtual void flush();
32
+ virtual void setScanProps(const TScanProps &);
33
34
private:
35
struct Private;
0 commit comments