diff options
Diffstat (limited to 'formatter.hpp')
-rw-r--r-- | formatter.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/formatter.hpp b/formatter.hpp index c2d3455f..2ae789d4 100644 --- a/formatter.hpp +++ b/formatter.hpp @@ -40,7 +40,7 @@ class Attribute { public: virtual ~Attribute() {} - virtual void apply(std::ostream& os) const {} + virtual void apply(std::ostream &) const {} }; @@ -58,7 +58,7 @@ public: virtual Attribute *normal(void) const { return new Attribute; } virtual Attribute *bold(void) const { return new Attribute; } virtual Attribute *italic(void) const { return new Attribute; } - virtual Attribute *color(Color color) const { return new Attribute; } + virtual Attribute *color(Color) const { return new Attribute; } }; |