mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-04 03:40:07 +00:00
More 'nullptr' updates and minor clean-ups.
This commit is contained in:
parent
46c3a6bbe5
commit
b047d9be53
113 changed files with 560 additions and 663 deletions
|
|
@ -150,7 +150,7 @@ XmlElement* XmlDocument::getDocumentElement (const bool onlyReadOuterDocumentEle
|
|||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
const String& XmlDocument::getLastParseError() const noexcept
|
||||
|
|
@ -360,7 +360,7 @@ XmlElement* XmlDocument::readNextElement (const bool alsoParseSubElements)
|
|||
|
||||
skipNextWhiteSpace();
|
||||
if (outOfData)
|
||||
return 0;
|
||||
return nullptr;
|
||||
|
||||
const int openBracket = input.indexOf ((juce_wchar) '<');
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue