1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00

dynamic cast not needed in ASCII parser

This commit is contained in:
Antonin Portelli 2014-01-21 14:28:06 +01:00
parent abf9946fdb
commit d45e64f87d

View File

@ -62,7 +62,7 @@ mat:
{
const int nrow = state->double_buf.size()/$INT, ncol = $INT;
(*state->data)[$ID] = new DMat(nrow,ncol);
DMat& M = dynamic_cast<DMat&>(*((*state->data)[$ID]));
DMat& M = static_cast<DMat&>(*((*state->data)[$ID]));
int r,i,j;
r = 0;