Only objects that are used in the lambda expression's body are captured. If you don't use an object in the body of the lambda (for example, my_huge_vector in your example), it isn't captured.
Per the C++0x FDIS (N3290) §5.1.2/11:
If a lambda-expression has an associated capture-default and its compound-statement odr-uses this or a variable with automatic storage duration and the odr-used entity is not explicitly captured, then the odr-used entity is said to be implicitly captured.
Your lambda expression has an associated capture default: by default, you capture variables by value using the [=].
If and only if a variable is used (in the One Definition Rule sense of the term "used") is a variable implicitly captured. Since you don't use my_huge_vector at all in the body (the "compound statement") of the lambda expression, it is not implicitly captured.
To continue with §5.1.2/14
An entity is captured by copy if
- it is implicitly captured and the capture-default is
= or if
- it is explicitly captured with a capture that does not include an
&.
Since your my_huge_vector is not implicitly captured and it is not explicitly captured, it is not captured at all, by copy or by reference.