Skip to content

Commit 8866103

Browse files
authored
Update openmp-directives.md
1 parent 3bb2990 commit 8866103

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/parallel/openmp/reference/openmp-directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ The `threadprivate` directive is based on the [thread](../../../cpp/thread.md) a
685685

686686
You can use `threadprivate` in a DLL that is statically loaded at process startup, however you can't use `threadprivate` in any DLL that will be loaded via [LoadLibrary](/windows/desktop/api/libloaderapi/nf-libloaderapi-loadlibrarya) such as DLLs that are loaded with [/DELAYLOAD (delay load import)](../../../build/reference/delayload-delay-load-import.md), which also uses `LoadLibrary`.
687687

688-
A `threadprivate` variable of a destructable type isn't guaranteed to have its destructor called. For example:
688+
A `threadprivate` variable of a *destructible* type isn't guaranteed to have its destructor called. For example:
689689

690690
```
691691
struct MyType

0 commit comments

Comments
 (0)