diff options
author | Adam <Adam@anope.org> | 2016-10-07 17:57:35 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-10-07 17:57:35 -0400 |
commit | 005434abce2f7f741f92fc81f24fb0a61c38ce56 (patch) | |
tree | 1e2642f5d41a1291b53f76d643cabc802481c655 /include/serialize.h | |
parent | 068f10c987ff114d3b950cf2b416dd86c46d542c (diff) |
Set shared library suffix to .so, add missing serializable type GetTypes definition
Diffstat (limited to 'include/serialize.h')
-rw-r--r-- | include/serialize.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/serialize.h b/include/serialize.h index 8fbeb6615..73964e3b7 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -279,7 +279,7 @@ class CoreExport Serialize::TypeBase : public Service static TypeBase *Find(const Anope::string &name); - static const std::map<Anope::string, TypeBase *>& GetTypes(); + static const std::vector<TypeBase *>& GetTypes(); }; template<typename T, typename Base = Serialize::TypeBase> |