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:
parent
abf9946fdb
commit
d45e64f87d
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user