On Fri 2008-12-05 22:32:20 UTC-0800, Robert Ryan ([EMAIL PROTECTED]) wrote:
> vector<char> v; is this an empty vector or is it You can call v.empty() to determine that. > vector<char>; without the v vector<char> is a datatype. You can't call vector<char>.empty(). Your question is equivalent to: int x = 42; // is this value 42? versus: int = 42; // this will never compile
