Changeset 973 for cpp/frams/genetics/f4
- Timestamp:
- 07/03/20 00:37:13 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/f4/f4_general.cpp
r955 r973 1 1 // This file is a part of Framsticks SDK. http://www.framsticks.com/ 2 // Copyright (C) 1999-20 19Maciej Komosinski and Szymon Ulatowski.2 // Copyright (C) 1999-2020 Maciej Komosinski and Szymon Ulatowski. 3 3 // See LICENSE.txt for details. 4 4 … … 1293 1293 if (2 == childCount()) 1294 1294 if (0 == out[0]) out += ">"; else 1295 if ('>' != out[out.len () - 1]) out += ">";1295 if ('>' != out[out.length() - 1]) out += ">"; 1296 1296 if (NULL != child2) child2->sprint(out); 1297 1297 // make sure last char is a '>' 1298 1298 if (0 == out[0]) out += ">"; else 1299 if ('>' != out[out.len () - 1]) out += ">";1299 if ('>' != out[out.length() - 1]) out += ">"; 1300 1300 } 1301 1301 … … 1310 1310 1311 1311 // very last '>' can be omitted 1312 len = out.len ();1312 len = out.length(); 1313 1313 if (len > 1) 1314 1314 if ('>' == out[len - 1]) { (out.directWrite())[len - 1] = 0; out.endWrite(); };
Note: See TracChangeset
for help on using the changeset viewer.