Created
January 28, 2019 23:32
-
-
Save LaylBongers/67169f43e44ee04b8ddfc66475376fcd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { | |
public: | |
std::vector<int> m_ints; | |
} | |
class Bar : virtual Foo { | |
} | |
void main() { | |
while(true) { | |
Bar bar; | |
bar.m_ints.push_back(10); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment