Skip to content
Snippets Groups Projects
Commit 0f2882ec authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

Suppress a specific unused-var warning on Posix platforms.

parent 6da3f090
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,9 @@ LLProcess::LLProcess(const LLSDOrParams& params):
// As of 2012-02-02, we only expect this to be implemented on Windows.
// Avoid spamming the log with warnings we fully expect.
ll_apr_warn_status(ok);
# endif // LL_WINDOWS
#else // ! LL_WINDOWS
(void)ok; // suppress 'unused' warning
# endif // ! LL_WINDOWS
#else
LL_WARNS("LLProcess") << "This version of APR lacks Linden apr_procattr_autokill_set() extension" << LL_ENDL;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment