aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/SmallVectorTest.cpp
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2014-12-03 14:44:16 +0000
committerAaron Ballman <aaron@aaronballman.com>2014-12-03 14:44:16 +0000
commit7ce5a4975b7778d37d35487ee1dd37de5ab6f00b (patch)
treec7feaae0c00e50f1209584621971303a67b539b9 /llvm/unittests/ADT/SmallVectorTest.cpp
parentd58a1f4d98d3d2d6905b2604143c1d8929d710dc (diff)
downloadllvm-7ce5a4975b7778d37d35487ee1dd37de5ab6f00b.zip
llvm-7ce5a4975b7778d37d35487ee1dd37de5ab6f00b.tar.gz
llvm-7ce5a4975b7778d37d35487ee1dd37de5ab6f00b.tar.bz2
Silencing several "multiple copy constructors" warnings from MSVC; NFC.
llvm-svn: 223238
Diffstat (limited to 'llvm/unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/SmallVectorTest.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/SmallVectorTest.cpp b/llvm/unittests/ADT/SmallVectorTest.cpp
index a18785a..ba6c395 100644
--- a/llvm/unittests/ADT/SmallVectorTest.cpp
+++ b/llvm/unittests/ADT/SmallVectorTest.cpp
@@ -717,7 +717,6 @@ template <int I> struct EmplaceableArg {
explicit EmplaceableArg(bool) : State(EAS_Arg) {}
private:
- EmplaceableArg(const EmplaceableArg &X) LLVM_DELETED_FUNCTION;
EmplaceableArg &operator=(EmplaceableArg &&) LLVM_DELETED_FUNCTION;
EmplaceableArg &operator=(const EmplaceableArg &) LLVM_DELETED_FUNCTION;
};