Search:

Type: Posts; User: sqrt(-1)

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,639

    Okay. I remember to have heard something about...

    Okay.

    I remember to have heard something about the MS compilers not following the standard with variable scopes.
    Does anyone know about this particular case with static variables (using max...
  2. Replies
    6
    Views
    1,639

    "Should" is too vague i fear. ;) The two...

    "Should" is too vague i fear. ;)
    The two mentioned compiler handle it differently as I have said.
  3. Replies
    3
    Views
    2,358

    You should declare and define your methods which...

    You should declare and define your methods which contain more than one line of code at different places, which should solve the compiler warning.

    meaning:



    class MyClass
    {
    private:
    ...
  4. Replies
    6
    Views
    1,639

    static variable scope

    Hello.


    void Blah()
    {
    static int i;
    ...
    if(case)
    {
    static int i;
Results 1 to 4 of 4