forked from boostorg/tuple
Get rid of unused parameter to avoid warnings.
[SVN r11214]
This commit is contained in:
@ -24,7 +24,7 @@ class C {};
|
|||||||
// classes with different kinds of conversions
|
// classes with different kinds of conversions
|
||||||
class AA {};
|
class AA {};
|
||||||
class BB : public 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(); }; };
|
struct DD { operator CC() const { return CC(); }; };
|
||||||
|
|
||||||
// something to prevent warnings for unused variables
|
// something to prevent warnings for unused variables
|
||||||
|
Reference in New Issue
Block a user