commit | 21b4aba40554549204a02d71a998379dc2ea44f4 | [log] [tgz] |
---|---|---|
author | Ed Tanous <edtanous@google.com> | Mon Jun 05 11:42:43 2023 -0700 |
committer | Ed Tanous <ed@tanous.net> | Tue Jun 06 16:07:52 2023 +0000 |
tree | f4524894c77c7a3493a2e00e60968e6354d43854 | |
parent | 052bcbf48802da1fa9583c8c0990378304e29903 [diff] [blame] |
Remove this-> this-> is redundant when operating within a class member scope. We should aim to be consistent. This change was done automatically with sed replace Tested: Code compiles Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: If791e83e0bd5f84031e65156b7ea082ded8e158c
diff --git a/http/app.hpp b/http/app.hpp index d3cf48c..b983bec 100644 --- a/http/app.hpp +++ b/http/app.hpp
@@ -49,7 +49,7 @@ {} ~App() { - this->stop(); + stop(); } App(const App&) = delete;