Changeset 46326 in vbox for trunk/src/VBox/Main/webservice
- Timestamp:
- May 30, 2013 12:16:53 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 86097
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/split-soapC.cpp
r44529 r46326 140 140 141 141 /* process nesting depth information */ 142 if (!strncmp(pLine, "#if", 3))142 if (!strncmp(pLine, RT_STR_TUPLE("#if"))) 143 143 cIfNesting++; 144 else if (!strncmp(pLine, "#endif", 6))144 else if (!strncmp(pLine, RT_STR_TUPLE("#endif"))) 145 145 { 146 146 cIfNesting--; … … 164 164 165 165 /* look for static variables used for enum conversion. */ 166 if (!strncmp(pLine, "static const struct soap_code_map", sizeof("static const struct soap_code_map") - 1))166 if (!strncmp(pLine, RT_STR_TUPLE("static const struct soap_code_map"))) 167 167 cLinesSinceStaticMap = 0; 168 168 else
Note:
See TracChangeset
for help on using the changeset viewer.