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

Unified Diff: src/IceTimerTree.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/IceTargetLoweringX8632.h ('k') | src/IceTranslator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTimerTree.h
diff --git a/src/IceTimerTree.h b/src/IceTimerTree.h
index 88685bf694e045aaffb575fc7da6a40a67fc6848..bc38245f06cc2cc4a33625ba9c03ceae07d8cd86 100644
--- a/src/IceTimerTree.h
+++ b/src/IceTimerTree.h
@@ -31,6 +31,9 @@ typedef std::vector<TimerTreeNode>::size_type TTindex;
// the TimerTreeNode::Nodes array, and the parent is always at a lower
// index.
class TimerTreeNode {
+ // TimerTreeNode(const TimerTreeNode &) = delete;
+ TimerTreeNode &operator=(const TimerTreeNode &) = delete;
+
public:
TimerTreeNode() : Parent(0), Interior(0), Time(0), UpdateCount(0) {}
std::vector<TTindex> Children; // indexed by TimerIdT
« no previous file with comments | « src/IceTargetLoweringX8632.h ('k') | src/IceTranslator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698