]> granicus.if.org Git - llvm/commitdiff
Attempt to make windows buildbots happy.
authorGeorge Burgess IV <george.burgess.iv@gmail.com>
Mon, 13 Jun 2016 19:38:49 +0000 (19:38 +0000)
committerGeorge Burgess IV <george.burgess.iv@gmail.com>
Mon, 13 Jun 2016 19:38:49 +0000 (19:38 +0000)
Broken by r272578. I didn't realize that the default move ctor
complaints would happen for non-template classes. :)

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272579 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/CFLAliasAnalysis.cpp

index 389787d9437bc4ab47c6c8574ad8361ad4168c7c..56b58aaed5990cb59c388aa40da216c32202e522 100644 (file)
@@ -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,