From: George Burgess IV Date: Mon, 13 Jun 2016 19:38:49 +0000 (+0000) Subject: Attempt to make windows buildbots happy. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2caddbf39dc921a90ffa0168025745472e2feb6e;p=llvm 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. :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@272579 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/CFLAliasAnalysis.cpp b/lib/Analysis/CFLAliasAnalysis.cpp index 389787d9437..56b58aaed59 100644 --- a/lib/Analysis/CFLAliasAnalysis.cpp +++ b/lib/Analysis/CFLAliasAnalysis.cpp @@ -557,10 +557,6 @@ public: typedef mapped_iterator 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,