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

Unified Diff: src/IceConverter.h

Issue 656123003: Subzero: Class definition cleanup. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Changes for Karl Created 6 years, 2 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/IceCfgNode.h ('k') | src/IceGlobalContext.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConverter.h
diff --git a/src/IceConverter.h b/src/IceConverter.h
index d26c34c0fd66cc146c9857868a8fcd53d828574f..623a4f047a0d47020960a246517672b2a91f7f5b 100644
--- a/src/IceConverter.h
+++ b/src/IceConverter.h
@@ -25,6 +25,9 @@ class Module;
namespace Ice {
class Converter : public Translator {
+ Converter(const Converter &) = delete;
+ Converter &operator=(const Converter &) = delete;
+
public:
Converter(llvm::Module *Mod, GlobalContext *Ctx, const Ice::ClFlags &Flags)
: Translator(Ctx, Flags), Mod(Mod) {}
@@ -64,9 +67,6 @@ private:
// Installs global declarations into GlobalDeclarationMap.
void installGlobalDeclarations(llvm::Module *Mod);
-
- Converter(const Converter &) = delete;
- Converter &operator=(const Converter &) = delete;
};
} // end of namespace ICE.
« no previous file with comments | « src/IceCfgNode.h ('k') | src/IceGlobalContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698