error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
err how do i fix that error?
for example given to this section of code..
[code=cpp]
Matrix::addMatr ix(Matrix m1, Matrix m3)
{
for(int a = 0; a < row; a++)
{
for(int b = 0; b < col; b++)
{
m3[a][b]=(m1[a][b] + m2[a][b]);
}
}
}
[/code]...
Search Result
Collapse
2 results in 0.0040 seconds.
Keywords
Members
Tags
-
slizorn started a topic error C4430: missing type specifier - int assumed. Note: C++ does not support defaultin Cerror C4430: missing type specifier - int assumed. Note: C++ does not support default
-
Compile error C4430 with Visual C++ 2005
Hi,
I am working on a legacy code. Following is a line of the code which
complies with Visual C++.NET 2003 but not with Visual C++ 2005:
for ( int i = 0; i < (const)(X.size( )); i++ ) {}// X is an object such as a
standard Vector
Compile error with Visual C++ 2005:
error C4430: missing type specifier - int assumed. Note: C++ does not
support default-int
Compiler expect (const...