On 6/2/2018 1:13 AM, Jeff King wrote:
On Sat, Jun 02, 2018 at 06:41:06AM +0200, Duy Nguyen wrote:
On Mon, Mar 26, 2018 at 4:31 PM, <git@xxxxxxxxxxxxxxxxx> wrote:
+static inline void assert_in_array(const struct json_writer *jw)
+{
+ if (!jw->open_stack.len)
+ die("json-writer: array: missing jw_array_begin()");
When you reroll, please consider marking all these string for
translation with _(), unless these are for machine consumption.
Actually, these are all basically asserts, I think. So ideally they'd be
BUG()s and not translated.
Yes, these are basically asserts. I'll convert them to BUG's and send
up another version this week.
Thanks
Jeff