You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-18 14:21:41 +00:00
Style: Replaces uses of 0/NULL by nullptr (C++11)
Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
This commit is contained in:
@@ -163,7 +163,7 @@ bool XMLParser::_parse_cdata() {
|
||||
return true;
|
||||
|
||||
char *cDataBegin = P;
|
||||
char *cDataEnd = 0;
|
||||
char *cDataEnd = nullptr;
|
||||
|
||||
// find end of CDATA
|
||||
while (*P && !cDataEnd) {
|
||||
@@ -507,9 +507,9 @@ void XMLParser::skip_section() {
|
||||
void XMLParser::close() {
|
||||
if (data)
|
||||
memdelete_arr(data);
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
length = 0;
|
||||
P = NULL;
|
||||
P = nullptr;
|
||||
node_empty = false;
|
||||
node_type = NODE_NONE;
|
||||
node_offset = 0;
|
||||
@@ -520,7 +520,7 @@ int XMLParser::get_current_line() const {
|
||||
}
|
||||
|
||||
XMLParser::XMLParser() {
|
||||
data = NULL;
|
||||
data = nullptr;
|
||||
close();
|
||||
special_characters.push_back("&");
|
||||
special_characters.push_back("<lt;");
|
||||
|
||||
Reference in New Issue
Block a user