mirror of
https://github.com/thorvg/thorvg.git
synced 2025-06-23 16:35:59 +00:00
loader SvgLoader: Fix for coding convention
This commit is contained in:
parent
b75e7ea91a
commit
5d81fe2446
1 changed files with 1 additions and 2 deletions
|
@ -596,7 +596,6 @@ static Matrix* _parseTransformationMatrix(const char* value)
|
||||||
char* end = str + strlen(str);
|
char* end = str + strlen(str);
|
||||||
|
|
||||||
while (str < end) {
|
while (str < end) {
|
||||||
|
|
||||||
auto state = MatrixState::Unknown;
|
auto state = MatrixState::Unknown;
|
||||||
|
|
||||||
if (isspace(*str) || (*str == ',')) {
|
if (isspace(*str) || (*str == ',')) {
|
||||||
|
@ -735,7 +734,7 @@ static bool _attrParseSvgNode(void* data, const char* key, const char* value)
|
||||||
return simpleXmlParseW3CAttribute(value, _parseStyleAttr, loader);
|
return simpleXmlParseW3CAttribute(value, _parseStyleAttr, loader);
|
||||||
}
|
}
|
||||||
#ifdef THORVG_LOG_ENABLED
|
#ifdef THORVG_LOG_ENABLED
|
||||||
else if (!strcmp(key, "xmlns") || !strcmp(key, "xmlns:xlink") || !strcmp (key, "xmlns:svg")) {
|
else if (!strcmp(key, "xmlns") || !strcmp(key, "xmlns:xlink") || !strcmp(key, "xmlns:svg")) {
|
||||||
//No action
|
//No action
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue