Skip to content

chashmap fmt improvement

Jeremy Soller requested to merge sheganinans:master into master

Created by: sheganinans

The reason why it would be good to have this extra semicolon and space at the end of the fmt string is that when using a CHashMap<u32,u32> or similar, then the output looks like:

0 => 11 => 12 => 1

With this semicolon and space, it will be much clearer where the value ends and the key begins:

0 => 1; 1 => 1; 2 => 1;

Merge request reports