C++: Fix mixed tabs and spaces in non-test code

This commit is contained in:
Dave Bartolomeo
2018-11-07 11:32:17 -08:00
parent 0afbea968c
commit 5bf88f0f0a
17 changed files with 127 additions and 127 deletions

View File

@@ -7,7 +7,7 @@ public:
//...
~Base() {
//wrong: this destructor is non-virtual, but Base has a derived class
// with a non-virtual destructor
//with a non-virtual destructor
freeResource(p);
}
};