Ensure that HashMap with POD types is nothrow.

This commit is contained in:
Sönke Ludwig 2020-04-16 09:53:13 +02:00
parent cc66180ad8
commit f8c25adf02

View file

@ -250,7 +250,7 @@ struct HashMap(TKey, TValue, Traits = DefaultHashMapTraits!TKey)
} }
} }
unittest { nothrow unittest {
import std.conv; import std.conv;
HashMap!(string, string) map; HashMap!(string, string) map;