diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-11-25 14:54:14 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-11-25 14:54:14 +0000 |
commit | 0633bdfcc370f57992be9cac76b11b26df409f24 (patch) | |
tree | 41066a50e709d7116dc4bfdf9fd6047261ea0778 /formatter.hpp | |
parent | 1a65d4f6b72866dc04547ecbe7262174ef09cc9a (diff) |
More parameters. Cleanups.
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 c2d3455..2ae789d 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; } }; |