diff options
author | George Burgess IV <george.burgess.iv@gmail.com> | 2016-06-13 19:38:49 +0000 |
---|---|---|
committer | George Burgess IV <george.burgess.iv@gmail.com> | 2016-06-13 19:38:49 +0000 |
commit | 99646871a74669a33ccd4c004a2087e2a348ddd6 (patch) | |
tree | 1cb98f09107f019ff39ed97509b8e747c9bee803 /llvm/lib/Analysis/CFLAliasAnalysis.cpp | |
parent | dc96febc379aef4261c6c48f0f90baae1fa92ae2 (diff) | |
download | bcm5719-llvm-99646871a74669a33ccd4c004a2087e2a348ddd6.tar.gz bcm5719-llvm-99646871a74669a33ccd4c004a2087e2a348ddd6.zip |
Attempt to make windows buildbots happy.
Broken by r272578. I didn't realize that the default move ctor
complaints would happen for non-template classes. :)
llvm-svn: 272579
Diffstat (limited to 'llvm/lib/Analysis/CFLAliasAnalysis.cpp')
-rw-r--r-- | llvm/lib/Analysis/CFLAliasAnalysis.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/llvm/lib/Analysis/CFLAliasAnalysis.cpp b/llvm/lib/Analysis/CFLAliasAnalysis.cpp index 389787d9437..56b58aaed59 100644 --- a/llvm/lib/Analysis/CFLAliasAnalysis.cpp +++ b/llvm/lib/Analysis/CFLAliasAnalysis.cpp @@ -557,10 +557,6 @@ public: typedef mapped_iterator<NodeMap::const_iterator, NodeDerefFun> const_node_iterator; - CFLGraph() = default; - CFLGraph(CFLGraph &&) = default; - CFLGraph &operator=(CFLGraph &&) = default; - void addNode(Node N) { getOrCreateNode(N); } void addEdge(Node From, Node To, EdgeType Type, |