Search Result

Collapse
2 results in 0.0040 seconds.
Keywords
Members
Tags
error c4430
  •  

  • error C4430: missing type specifier - int assumed. Note: C++ does not support default

    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]...
    See more | Go to post
    Last edited by slizorn; Jul 31 '08, 05:03 PM. Reason: [/code] & [code=cpp]

  • John
    Guest started a topic Compile error C4430 with Visual C++ 2005
    in .NET

    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...
    See more | Go to post
Working...