jasonrbr / CodeReader

MIT License
6 stars 1 forks source link

Classes are detecting libraries inside of them? #88

Closed alexandrabrown closed 7 years ago

alexandrabrown commented 7 years ago
class Class_C {
    // cool function
    void member(int x) {
        // function!
        for (int i = 0; i < 3; ++i) {
            cout << x << endl;
        }
    }
};

classes > Class_C shows this screen shot 2016-12-10 at 1 48 16 pm

Aka all the classes think the global libraries belong to them 😮

alexandrabrown commented 7 years ago

Menu line 89: # TODO ignore #include's that are under subscopes

alexandrabrown commented 7 years ago

@leftoverBits to the rescue