summaryrefslogtreecommitdiff
path: root/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
commit100c267249d1d03c4f96eede9877a4f9f54f2247 (patch)
tree1a51c4153e6acb6692b0ed191ab70ee5b8b92c19 /unittests/ADT/SmallVectorTest.cpp
parent2b3ef8b065ff655c52efe273e9b150db302e8a5a (diff)
downloadllvm-100c267249d1d03c4f96eede9877a4f9f54f2247.tar.gz
llvm-100c267249d1d03c4f96eede9877a4f9f54f2247.tar.bz2
llvm-100c267249d1d03c4f96eede9877a4f9f54f2247.tar.xz
Switch attribute macros to use 'LLVM_' as a prefix. We retain the old names
until other LLVM projects using these are cleaned up. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117200 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/ADT/SmallVectorTest.cpp')
-rw-r--r--unittests/ADT/SmallVectorTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/ADT/SmallVectorTest.cpp b/unittests/ADT/SmallVectorTest.cpp
index 78dc393e5c..f4da54dbca 100644
--- a/unittests/ADT/SmallVectorTest.cpp
+++ b/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();
}