diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2014-12-03 14:44:16 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2014-12-03 14:44:16 +0000 |
commit | 7ce5a4975b7778d37d35487ee1dd37de5ab6f00b (patch) | |
tree | c7feaae0c00e50f1209584621971303a67b539b9 /llvm/unittests/ADT/SmallVectorTest.cpp | |
parent | d58a1f4d98d3d2d6905b2604143c1d8929d710dc (diff) | |
download | llvm-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.cpp | 1 |
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; }; |