reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
    1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
class Foo
{
public:
    int Bar(int x, int y)
    {
        return x + y;
    }
};

namespace { int Quux (void) { return 0; } }

struct Container { int MemberVar; };

int main()
{
    Foo fooo;
    Foo *ptr_fooo = &fooo;
    fooo.Bar(1, 2);

    Container container;
    Container *ptr_container = &container;
    int q = Quux();
    return container.MemberVar = 3; // Break here
}