﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
455	Bug in ropp_io_vlist_size.f90	Ian Culverwell	Ian Culverwell	"'''ropp_io/ropp/ropp_io_vlist_size.f90''', the overloading of the fortran intrinsic SIZE function for the various (sub-) types of vlists, contains a bug:
{{{
FUNCTION size_vlist(vlist) RESULT(n),
...
  nn(1) = size_vlistD0d(vlist%VlistD0d)
  nn(2) = size_vlistD1d(vlist%VlistD1d)
  nn(2) = size_vlistD2d(vlist%VlistD2d)

  n = SUM(nn)
}}}
should of course read
{{{
FUNCTION size_vlist(vlist) RESULT(n
...
  nn(1) = size_vlistD0d(vlist%VlistD0d)
  nn(2) = size_vlistD1d(vlist%VlistD1d)
  nn(3) = size_vlistD2d(vlist%VlistD2d)

  n = SUM(nn)
}}}
"	defect	closed	normal	9.0	ropp_io	8.0	fixed	vlists	
