| 1370 | } |
| 1371 | |
| 1372 | static void SlSaveLoadMember(SaveLoadType cmd, Tvar *item, VarType conv) |
| 1373 | { |
| 1374 | switch (cmd) { |
| 1375 | case SL_VAR: SlSaveLoadConv(item, conv); break; |
| 1376 | case SL_REF: SlSaveLoadRef(item, conv); break; |
| 1377 | case SL_STDSTR: SlStdString(item, conv); break; |
| 1378 | default: |
| 1379 | NOT_REACHED(); |
| 1380 | } |
| 1381 | } |
| 1382 | |
| 1383 | /** |
| 1384 | * Internal templated helper to save/load a list-like type. |
nothing calls this directly
no test coverage detected