mirror of
				https://github.com/aportelli/LatAnalyze.git
				synced 2025-10-30 22:34:32 +00:00 
			
		
		
		
	dynamic cast not needed in ASCII parser
This commit is contained in:
		| @@ -62,7 +62,7 @@ mat: | |||||||
|     { |     { | ||||||
|         const int nrow = state->double_buf.size()/$INT, ncol = $INT; |         const int nrow = state->double_buf.size()/$INT, ncol = $INT; | ||||||
|         (*state->data)[$ID] = new DMat(nrow,ncol); |         (*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; |         int r,i,j; | ||||||
|          |          | ||||||
|         r = 0; |         r = 0; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user