Suppress a warning discovered by rL317076. [-Wunused-private-field]

llvm-svn: 317090
This commit is contained in:
NAKAMURA Takumi 2017-11-01 13:47:51 +00:00
parent c206e449cc
commit f7d7a59b9e
1 changed files with 1 additions and 0 deletions

View File

@ -206,6 +206,7 @@ namespace rdf {
bool operator==(const rr_iterator &I) const {
assert(Owner == I.Owner);
(void)Owner;
return Index == I.Index;
}