Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. struct Base {
  2. virtual void reimplementMe(int a) {}
  3. };
  4. struct Derived : public Base {
  5. virtual void reimplementMe(int a) {}
  6. };
  7.  
  8. clang-tidy -checks='modernize-use-override' -fix test.cpp -- -std=c++11
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement