Skip to content

Instantly share code, notes, and snippets.

@LaylBongers
Created January 28, 2019 23:32
Show Gist options
  • Save LaylBongers/67169f43e44ee04b8ddfc66475376fcd to your computer and use it in GitHub Desktop.
Save LaylBongers/67169f43e44ee04b8ddfc66475376fcd to your computer and use it in GitHub Desktop.
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