mirror of https://github.com/Icinga/icinga2.git
Windows build fix.
This commit is contained in:
parent
3556f9afde
commit
737675387d
|
@ -25,8 +25,10 @@ using namespace icinga;
|
|||
void Process::Run(const boost::function<void (const ProcessResult&)>& callback)
|
||||
{
|
||||
// TODO: implement
|
||||
ProcessResult;
|
||||
callback();
|
||||
ProcessResult pr;
|
||||
|
||||
if (callback)
|
||||
callback(pr);
|
||||
}
|
||||
|
||||
#endif /* _WIN32 */
|
||||
|
|
Loading…
Reference in New Issue