Get rid of unused parameter to avoid warnings.

[SVN r11214]
This commit is contained in:
Darin Adler
2001-09-22 19:36:44 +00:00
parent a9b6ca508a
commit 4503ed841b

View File

@ -24,7 +24,7 @@ class C {};
// classes with different kinds of conversions
class AA {};
class BB : public AA {};
struct CC { CC() {} CC(const BB& b) {} };
struct CC { CC() {} CC(const BB&) {} };
struct DD { operator CC() const { return CC(); }; };
// something to prevent warnings for unused variables