Skip to content

Commit

Permalink
Update src/xrCore/XML/XMLDocument.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Xottab-DUTY authored Nov 9, 2023
1 parent 7bfeb41 commit 22626c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/XML/XMLDocument.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ void ParseFile(pcstr path, CMemoryWriter& W, IReader* F, XMLDocument* xml)
F->r_string(str, sizeof str);

// Skip any spaces or tabs
const char* begin_of_include = str;
pcstr begin_of_include = str;
while (*begin_of_include != '\0' && std::isblank(*begin_of_include))
++begin_of_include;

Expand Down

0 comments on commit 22626c9

Please sign in to comment.