Fix bad regexp

From-SVN: r52993
This commit is contained in:
Nathan Sidwell 2002-05-01 07:34:35 +00:00
parent 232316a275
commit f120129309
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ class A
{
public:
A & operator+=( int );
A & operator+( int ); // { dg-warning "`A& A::operator+(int)' should return by value" "" }
A & operator+( int ); // { dg-warning ".* should return by value" "" }
A operator+=( float );
A operator+( float );
};