bug nested vector
| Newsgroups | gmane.comp.gnu.indent.bugs |
|---|---|
| Message-ID | <CADk+wimpdVtbDrV1sDGPCRqap9EfEDmAjsw-NOaqU=AN+XEwaQ@mail.gmail.com> |
Hi,
is this a bug?
*#include <vector>*
*using namespace std;*
*int main(int argc, char **argv)*
*{*
* vector < vector < double > >vv_dbl;*
*}*
*then* $indent -kr -ci2 -cli2 -i2 -l80 -nut foo.cpp
*results* in
#include <vector>
using namespace std;
int main(int argc, char **argv)
{
vector < vector < double *>>*vv_dbl;
}
Sincerely,
mr blue