Overloaded Add that tries to call the correct function above.
| 1282 | |
| 1283 | // Overloaded Add that tries to call the correct function above. |
| 1284 | void Add(int8_t i) { Int(i); } |
| 1285 | void Add(int16_t i) { Int(i); } |
| 1286 | void Add(int32_t i) { Int(i); } |
| 1287 | void Add(int64_t i) { Int(i); } |