Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: src/IceCompileServer.h

Issue 1197223002: Subzero: Use C++11 member initializers where practical. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceClFlagsExtra.h ('k') | src/IceCompiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCompileServer.h
diff --git a/src/IceCompileServer.h b/src/IceCompileServer.h
index ed3883b74a24377348ac1f09303b8f5b2972a999..497810a73e16180fa1f27db4f4bc3fd8e8a9ea8c 100644
--- a/src/IceCompileServer.h
+++ b/src/IceCompileServer.h
@@ -45,7 +45,7 @@ class CompileServer {
public:
explicit CompileServer(Compiler &Comp) : Comp(Comp) {}
- virtual ~CompileServer() {}
+ virtual ~CompileServer() = default;
virtual void run() = 0;
« no previous file with comments | « src/IceClFlagsExtra.h ('k') | src/IceCompiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698