This commit is contained in:
Jacob Dufault 2017-04-14 21:56:51 -07:00
parent 07c984d6c7
commit e55124b7be
2 changed files with 10 additions and 0 deletions

4
foo/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.lineNumbers": "on"
}

View File

@ -3,4 +3,10 @@ namespace {
struct Foo2 {
virtual void foobar() = 0;
};
void x() {
int bar = 3;
bar++;
}
}