aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ADT/SmallVectorTest.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2010-10-23 08:10:43 +0000
committerChandler Carruth <chandlerc@gmail.com>2010-10-23 08:10:43 +0000
commit88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff (patch)
treead61d56b991a735f7c5dfbfd16ea22aa4aa42c19 /llvm/unittests/ADT/SmallVectorTest.cpp
parent9733158bfd79aa81c55bd3e3a6009874a597d351 (diff)
downloadllvm-88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff.zip
llvm-88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff.tar.gz
llvm-88c54b82c1bc7193a92769992cbd1c8b9eb8d7ff.tar.bz2
Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names
until other LLVM projects using these are cleaned up. llvm-svn: 117200
Diffstat (limited to 'llvm/unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--llvm/unittests/ADT/SmallVectorTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/SmallVectorTest.cpp b/llvm/unittests/ADT/SmallVectorTest.cpp
index 78dc393..f4da54d 100644
--- a/llvm/unittests/ADT/SmallVectorTest.cpp
+++ b/llvm/unittests/ADT/SmallVectorTest.cpp
@@ -77,7 +77,7 @@ public:
return c0.getValue() == c1.getValue();
}
- friend bool ATTRIBUTE_UNUSED
+ friend bool LLVM_ATTRIBUTE_UNUSED
operator!=(const Constructable & c0, const Constructable & c1) {
return c0.getValue() != c1.getValue();
}