remove comment

This commit is contained in:
Jaremy Creechley 2023-09-12 18:17:45 -07:00
parent 57a1918ac4
commit a9373f6d43
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -29,15 +29,6 @@ type
## SharedPtr that allocates a shared buffer and keeps the
## memory allocated until all references to it are gone.
##
## Important:
## On `refc` that "internal" destructors for ThreadResult[T]
## are *not* called. Effectively limiting this to 1 depth
## of destructors. Hence the `threadSafeType` marker below.
##
## Edit: not sure this is quire accurate, but some care
## needs to be taken to verify the destructor
## works with the specific type.
##
## Since ThreadResult is a plain object, its lifetime can be
## tied to that of an async proc. In this case it could be
## freed before the other background thread is finished.