diff options
| author | Stefan Boberg <[email protected]> | 2026-02-20 20:02:28 +0100 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2026-02-20 20:02:28 +0100 |
| commit | 97a940541e7af0a3705762d03983b36401920d3a (patch) | |
| tree | da2e168564a5526a78f0c8716a25aba7e078566b /src | |
| parent | made http.sys async worker thread pool configurable via the same option as th... (diff) | |
| download | zen-97a940541e7af0a3705762d03983b36401920d3a.tar.xz zen-97a940541e7af0a3705762d03983b36401920d3a.zip | |
add friends to fix build issue
Diffstat (limited to 'src')
| -rw-r--r-- | src/zencore/include/zencore/workthreadpool.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/workthreadpool.h b/src/zencore/include/zencore/workthreadpool.h index 09c4903d6..932e3d404 100644 --- a/src/zencore/include/zencore/workthreadpool.h +++ b/src/zencore/include/zencore/workthreadpool.h @@ -48,6 +48,9 @@ private: struct Impl; struct ThreadStartInfo; + friend struct WinTpImpl; + friend struct ExplicitImpl; + std::unique_ptr<Impl> m_Impl; }; |