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

LLProcess::handle must be qualified when used in LLJob class.

parent 85581eef
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ static std::string WindowsErrorString(const std::string& operation);
class LLJob: public LLSingleton<LLJob>
{
public:
void assignProcess(const std::string& prog, handle hProcess)
void assignProcess(const std::string& prog, LLProcess::handle hProcess)
{
// If we never managed to initialize this Job Object, can't use it --
// but don't keep spamming the log, we already emitted warnings when
......@@ -175,7 +175,7 @@ class LLJob: public LLSingleton<LLJob>
}
}
handle mJob;
LLProcess::handle mJob;
};
void LLProcess::launch(const LLSDOrParams& params)
......
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