Overloaded Add that tries to call the correct function above.
| 1292 | |
| 1293 | // Overloaded Add that tries to call the correct function above. |
| 1294 | void Add(int8_t i) { Int(i); } |
| 1295 | void Add(int16_t i) { Int(i); } |
| 1296 | void Add(int32_t i) { Int(i); } |
| 1297 | void Add(int64_t i) { Int(i); } |