--- deliantra/server/common/arch.C 2018/11/18 00:37:11 1.117 +++ deliantra/server/common/arch.C 2018/12/01 20:22:12 1.119 @@ -34,13 +34,14 @@ arch_ptr archetype::empty; // the hashtable -typedef ska::flat_hash_map< - const char *, - arch_ptr, - str_hash, - str_equal, - slice_allocator< std::pair > -> HT; +typedef ska::flat_hash_map + < + const char *, + arch_ptr, + str_hash, + str_equal, + slice_allocator< std::pair > + > HT; static HT ht (10000); archvec archetypes; @@ -348,7 +349,7 @@ if (!name) return 0; - auto (i, ht.find (name)); + auto i = ht.find (name); if (i == ht.end ()) return 0;