Cleanup: add comment

This commit is contained in:
Jacques Lucke 2021-06-10 12:59:21 +02:00
parent 5fa6cdb77a
commit e4ef8cbf7e
1 changed files with 5 additions and 0 deletions

View File

@ -260,6 +260,11 @@ class CPPType : NonCopyable, NonMovable {
return !(&a == &b);
}
/**
* Get the `CPPType` that corresponds to a specific static type.
* This only works for types that actually implement the template specialization using
* `MAKE_CPP_TYPE`.
*/
template<typename T> static const CPPType &get();
/**