Changeset 69772 in vbox
- Timestamp:
- Nov 20, 2017 12:32:00 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/split-soapC.cpp
r69500 r69772 105 105 size_t cbWritten = 0; 106 106 unsigned long cIfNesting = 0; 107 unsigned long cWarningNesting = 0; 107 108 unsigned long cBraceNesting = 0; 108 109 unsigned long cLinesSinceStaticMap = ~0UL / 2; … … 166 167 fJustZero = true; 167 168 } 169 else if (!strncmp(pszLine, RT_STR_TUPLE("#pragma warning(push)"))) 170 cWarningNesting++; 171 else if (!strncmp(pszLine, RT_STR_TUPLE("#pragma warning(pop)"))) 172 cWarningNesting--; 168 173 else 169 174 { … … 190 195 if ( cbWritten >= cbLimit 191 196 && cIfNesting == 0 197 && cWarningNesting == 0 192 198 && fJustZero 193 199 && cFiles < cChunks
Note:
See TracChangeset
for help on using the changeset viewer.