2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-23 17:52:17 +00:00

Remove unused paramters.

Add -Wextra to gcc flags to enable more warnings.


[SVN r41550]
This commit is contained in:
Jürgen Hunold
2007-12-01 20:26:37 +00:00
parent 40e4940877
commit 5cbb539ec5
6 changed files with 13 additions and 10 deletions

View File

@@ -5,10 +5,10 @@ struct vector
{
virtual ~vector() {}
vector operator+( const vector& x ) const
vector operator+( const vector& ) const
{ return vector(); }
vector& operator+=( const vector& x )
vector& operator+=( const vector& )
{ return *this; }
vector operator-() const