1
1

Cleanup: add comment

This commit is contained in:
2021-06-10 12:59:21 +02:00
parent 5fa6cdb77a
commit e4ef8cbf7e

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();
/**