projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d58a1f4
)
Silencing several "multiple copy constructors" warnings from MSVC; NFC.
author
Aaron Ballman
<aaron@aaronballman.com>
Wed, 3 Dec 2014 14:44:16 +0000
(14:44 +0000)
committer
Aaron Ballman
<aaron@aaronballman.com>
Wed, 3 Dec 2014 14:44:16 +0000
(14:44 +0000)
llvm-svn: 223238
llvm/unittests/ADT/SmallVectorTest.cpp
patch
|
blob
|
history
diff --git
a/llvm/unittests/ADT/SmallVectorTest.cpp
b/llvm/unittests/ADT/SmallVectorTest.cpp
index
a18785a
..
ba6c395
100644
(file)
--- 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;
};