mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
DolphinQt: fix Visual Studio warning about 'assignment within conditional expression'
This commit is contained in:
parent
05b1566e3f
commit
04a635e884
@ -66,8 +66,7 @@ FlowLayout::FlowLayout(int margin, int h_spacing, int v_spacing)
|
||||
|
||||
FlowLayout::~FlowLayout()
|
||||
{
|
||||
QLayoutItem* item;
|
||||
while ((item = takeAt(0)))
|
||||
while (QLayoutItem* item = takeAt(0))
|
||||
delete item;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user