nv50/ir: fix unnecessary parentheses warning

Signed-off-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Rhys Kidd <rhyskidd@gmail.com>
This commit is contained in:
Karol Herbst
2019-09-20 19:45:22 +02:00
parent ab49a0e746
commit 61ccca12f5
@@ -145,7 +145,7 @@ public:
#define DLLIST_EMPTY(__list) ((__list)->next == (__list))
#define DLLIST_FOR_EACH(list, it) \
for (DLList::Iterator (it) = (list)->iterator(); !(it).end(); (it).next())
for (DLList::Iterator it = (list)->iterator(); !(it).end(); (it).next())
class DLList
{