Small changes to save credentials.

This commit is contained in:
DH
2026-02-27 20:41:05 -05:00
parent cc0688f048
commit f266f83729

View File

@@ -16,9 +16,9 @@
* - Re-registering the same id overwrites the previous entry ("last wins").
* - ClassId must be hashable (std::hash<ClassId> specialization must exist).
*
* @tparam ClassId Unique class identifier type (e.g. std::string, int, enum).
* @tparam BaseClass Base type for all created objects.
* @tparam Args Constructor arguments forwarded to registered derived types (by value).
* @tparam ClassId -Unique class identifier type (e.g. std::string, int, enum).
* @tparam BaseClass -Base type for all created objects.
* @tparam Arg - Constructor arguments forwarded to registered derived types (by value).
*
* Usage example:
* @code