diff options
Diffstat (limited to 'src/CommandOutput.h')
-rw-r--r-- | src/CommandOutput.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CommandOutput.h b/src/CommandOutput.h index 80339b405..3763d625f 100644 --- a/src/CommandOutput.h +++ b/src/CommandOutput.h @@ -35,9 +35,10 @@ class cNullCommandOutputCallback : public cCommandOutputCallback { // cCommandOutputCallback overrides: - virtual void Out(const AString & /*a_Text*/) override + virtual void Out(const AString & a_Text) override { // Do nothing + UNUSED(a_Text); } } ; |