Patch Exceptions
| 139 | |
| 140 | //! Patch Exceptions |
| 141 | static inline void patch_exceptions(PT* out, |
| 142 | const PT* exceptions, |
| 143 | const exp_p_t* exceptions_positions, |
| 144 | const exp_c_t* exceptions_count) { |
| 145 | const auto exp_c = exceptions_count[0]; |
| 146 | for (exp_c_t i {0}; i < exp_c; i++) { |
| 147 | out[exceptions_positions[i]] = exceptions[i]; |
| 148 | } |
| 149 | } |
| 150 | }; |
| 151 | |
| 152 | } // namespace alp |
nothing calls this directly
no outgoing calls
no test coverage detected