Skip to content

Commit c8ff575

Browse files
authored
Update ofXml.cpp
Syntax error fix. Sorry.
1 parent 6ac1b0a commit c8ff575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/openFrameworks/utils/ofXml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ void ofXml::setParsingOptions(unsigned int l_parsing_options) {
2222

2323
bool ofXml::load(const of::filesystem::path & file){
2424
auto auxDoc = std::make_shared<pugi::xml_document>();
25-
auto res = auxDoc->load_file(ofToDataPath(file).c_str(), parsing_options));
25+
auto res = auxDoc->load_file(ofToDataPath(file).c_str(), parsing_options);
2626
if( res ){
2727
doc = auxDoc;
2828
xml = doc->root();

0 commit comments

Comments
 (0)