diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-05-29 22:59:10 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-05-29 22:59:10 +0200 |
| commit | 8b5f6159ca7a5d04225b2f3ee1572b4c67425c5e (patch) | |
| tree | 1bc1d7325c8f4523d1478cae9064c99eae45df12 | |
| parent | af7de7b6fb50b137c667057c518bc98086503425 (diff) | |
Cleanup: move static mutex out of header.
| -rw-r--r-- | src/lib/grok/context.cc | 2 | ||||
| -rw-r--r-- | src/lib/grok/context.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/grok/context.cc b/src/lib/grok/context.cc index ae512d4a5..91ab26600 100644 --- a/src/lib/grok/context.cc +++ b/src/lib/grok/context.cc @@ -25,6 +25,8 @@ using namespace grk_plugin; +static std::mutex launchMutex; + GrokContext::GrokContext(DcpomaticContext* dcpomatic_context) : _dcpomatic_context(dcpomatic_context) diff --git a/src/lib/grok/context.h b/src/lib/grok/context.h index 5b8d749c7..405ae2352 100644 --- a/src/lib/grok/context.h +++ b/src/lib/grok/context.h @@ -32,8 +32,6 @@ #include <boost/filesystem.hpp> -static std::mutex launchMutex; - namespace grk_plugin { |
