This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Bug report


$ g++ -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/specs

gcc version egcs-2.91.66 19990314/Linux (egcs-1.1.2 release)
$ g++ -I /usr/local/blitz -I /usr/local/mtl -c bug.C
bug.C:13: Internal compiler error.
bug.C:13: Please submit a full bug report.
bug.C:13: See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport>
for instructions.
$ g++ -I /usr/local/blitz -I /usr/local/mtl -E bug.C > bug.i
$ gzip bug.i

Hope this helps !
--
Marc Duflot    --    FNRS Research Fellow

#include <blitz/tinymat.h>
#include <mtl/matrix.h>
using namespace mtl;

template <int nsd>
class Meshless {
public :
  typedef blitz::TinyMatrix<double,nsd,nsd>		ElmMat;
  typedef matrix<	ElmMat,
			symmetric<lower>,
			compressed<>,
			row_major> :: type		T_MatK;
  typedef T_MatK::iterator				T_MatKItRow;
};

bug.i.gz


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]