Renamed LambdaCapture::default_capture.

This commit is contained in:
Roberto Raggi
2010-06-23 14:42:59 +02:00
parent da817310c2
commit fea6c1cf8c
3 changed files with 7 additions and 7 deletions

View File

@@ -4153,12 +4153,12 @@ protected:
class LambdaCaptureAST: public AST
{
public:
unsigned default_capture;
unsigned default_capture_token;
CaptureListAST *capture_list;
public:
LambdaCaptureAST()
: default_capture(0)
: default_capture_token(0)
, capture_list(0)
{}