From 06881d8654aaf28b61d8fb826ebf7b09c8e9aa01 Mon Sep 17 00:00:00 2001 From: sobaya Date: Sun, 4 Aug 2019 13:05:39 +0900 Subject: [PATCH] Fix: assertion message in indent manipulation of struct initializer --- src/dfmt/formatter.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 04d80bd..c8d63a6 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -1561,7 +1561,7 @@ private: else if (astInformation.structInfoSortedByEndLocation .canFind!(st => st.startLocation < current.index && current.index < st.endLocation)) { immutable l2 = indents.indentToMostRecent(tok!"{"); - assert(l2 != -1); + assert(l2 != -1, "Recent '{' is not found despite being in struct initializer"); indentLevel = l2 + 1; } else if (config.dfmt_compact_labeled_statements == OptionalBoolean.f