Unfortunately we also have vectors of vectors (of vectors)! But yeah I
think we should either do that or take print capability out of
parameters.
I'll do something tomorrow.
Sent from my iPhone
On Dec 16, 2008, at 8:17 PM, Benjamin Kirk
wrote:
>> os << _value;
>>
>> This doesn't work if
> os << _value;
>
> This doesn't work if the parameter type is something like a
> std::vector... it won't even compile. Any ideas on dealing with
> this? For now, we've just commented out that line of code (we don't
> need to print the parameters) and continued on but what is the
> correct s
On line 255 of parameters.h we have:
os << _value;
This doesn't work if the parameter type is something like a
std::vector... it won't even compile. Any ideas on dealing with
this? For now, we've just commented out that line of code (we don't
need to print the parameters) and continued on