Construct integer entry
| 149 | |
| 150 | /// Construct integer entry |
| 151 | forceinline SymbolEntry se_i(int i) { |
| 152 | return SymbolEntry(ST_INT, i); |
| 153 | } |
| 154 | /// Construct Boolean entry |
| 155 | forceinline SymbolEntry se_b(bool b) { |
| 156 | return SymbolEntry(ST_BOOL, b); |
nothing calls this directly
no test coverage detected