Attempt #2 to appease the buildbots.
MSVC calls the copy ctor on StratifiedSets for some reason. So,
undelete it.
llvm-svn: 272184
diff --git a/llvm/lib/Analysis/StratifiedSets.h b/llvm/lib/Analysis/StratifiedSets.h
index d4cdbdb..ae1befb 100644
--- a/llvm/lib/Analysis/StratifiedSets.h
+++ b/llvm/lib/Analysis/StratifiedSets.h
@@ -94,9 +94,9 @@
template <typename T> class StratifiedSets {
public:
StratifiedSets() = default;
- // If we have a need to copy these at some point, it's fine to default this.
- // At the time of writing, copying StratifiedSets is always a perf bug.
- StratifiedSets(const StratifiedSets &) = delete;
+
+ // TODO: Figure out how to make MSVC not call the copy ctor here, and delete
+ // it.
// Can't default these due to compile errors in MSVC2013
StratifiedSets(StratifiedSets &&Other) { *this = std::move(Other); }