bug nested vector

"[email protected]" <[email protected]> Wed, 6 Jul 2016 15:11:58 +0200
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