mirror of https://github.com/Icinga/icinga2.git
Windows build fix.
This commit is contained in:
parent
a2d6e90d06
commit
47fe59e4de
|
@ -20,6 +20,7 @@
|
|||
#ifndef DEBUGINFO_H
|
||||
#define DEBUGINFO_H
|
||||
|
||||
#include "config/i2-config.h"
|
||||
#include "base/qstring.h"
|
||||
|
||||
namespace icinga
|
||||
|
@ -59,11 +60,11 @@ struct DebugInfo
|
|||
};
|
||||
};
|
||||
|
||||
std::ostream& operator<<(std::ostream& out, const DebugInfo& val);
|
||||
I2_CONFIG_API std::ostream& operator<<(std::ostream& out, const DebugInfo& val);
|
||||
|
||||
DebugInfo DebugInfoRange(const DebugInfo& start, const DebugInfo& end);
|
||||
I2_CONFIG_API DebugInfo DebugInfoRange(const DebugInfo& start, const DebugInfo& end);
|
||||
|
||||
void ShowCodeFragment(std::ostream& out, const DebugInfo& di);
|
||||
I2_CONFIG_API void ShowCodeFragment(std::ostream& out, const DebugInfo& di);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue