You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a current project using objective c(++) extensively KissXML fails to compile.
Error messages referencing DDXMLElement.m: Expected identifier; 'namespace' is a keyword in Objective-C++
After changing all method parameters named "namespace" to e.g. "_namespace" the compilation is successful. E.g. change - (void)_addNamespace:(DDXMLNode *)namespace to - (void)_addNamespace:(DDXMLNode *)_namespace
The text was updated successfully, but these errors were encountered:
In a current project using objective c(++) extensively KissXML fails to compile.
Error messages referencing DDXMLElement.m:
Expected identifier; 'namespace' is a keyword in Objective-C++
After changing all method parameters named "namespace" to e.g. "_namespace" the compilation is successful. E.g. change
- (void)_addNamespace:(DDXMLNode *)namespace
to- (void)_addNamespace:(DDXMLNode *)_namespace
The text was updated successfully, but these errors were encountered: