mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-14 15:38:57 +00:00
Silence 'unused' warning.
llvm-svn: 111539
This commit is contained in:
parent
44e9a498ac
commit
51b5bcd605
@ -13,6 +13,7 @@
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include "llvm/ADT/SmallVector.h"
|
||||
#include "llvm/Support/Compiler.h"
|
||||
#include <stdarg.h>
|
||||
#include <list>
|
||||
|
||||
@ -76,7 +77,8 @@ public:
|
||||
return c0.getValue() == c1.getValue();
|
||||
}
|
||||
|
||||
friend bool operator!=(const Constructable & c0, const Constructable & c1) {
|
||||
friend bool ATTRIBUTE_UNUSED
|
||||
operator!=(const Constructable & c0, const Constructable & c1) {
|
||||
return c0.getValue() != c1.getValue();
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user