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:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user