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

Unified Diff: src/IceTargetLoweringMIPS32.h

Issue 1201023002: Subzero: Use more "= default;" for ctors and dtors. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: 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/IceTargetLoweringARM32.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTargetLoweringMIPS32.h
diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h
index 5383f38196a2c17ee03eae4024cd0e72516da765..eb4a9fd282b1c5d68d6a85cd6c9c6813612eaa3a 100644
--- a/src/IceTargetLoweringMIPS32.h
+++ b/src/IceTargetLoweringMIPS32.h
@@ -124,7 +124,7 @@ protected:
static IceString RegNames[];
private:
- ~TargetMIPS32() override {}
+ ~TargetMIPS32() override = default;
};
class TargetDataMIPS32 final : public TargetDataLowering {
@@ -145,7 +145,7 @@ protected:
explicit TargetDataMIPS32(GlobalContext *Ctx);
private:
- ~TargetDataMIPS32() override {}
+ ~TargetDataMIPS32() override = default;
template <typename T> static void emitConstantPool(GlobalContext *Ctx);
};
« no previous file with comments | « src/IceTargetLoweringARM32.h ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698