Nikolay Sivov nsivov@codeweavers.com wrote:
- switch (This->state)
- {
- case XmlWriterState_Initial:
return E_UNEXPECTED;
- case XmlWriterState_DocClosed:
return WR_E_INVALIDACTION;
- default:
;
- }
What's wrong with explicit 'break;' instead of weird ';'?