mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 06:29:05 +00:00
Silence 'unused' warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111539 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
#include "gtest/gtest.h"
|
#include "gtest/gtest.h"
|
||||||
#include "llvm/ADT/SmallVector.h"
|
#include "llvm/ADT/SmallVector.h"
|
||||||
|
#include "llvm/Support/Compiler.h"
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <list>
|
#include <list>
|
||||||
|
|
||||||
@@ -76,7 +77,8 @@ public:
|
|||||||
return c0.getValue() == c1.getValue();
|
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();
|
return c0.getValue() != c1.getValue();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user