Windows build fix.

This commit is contained in:
Gunnar Beutner 2014-03-26 08:23:54 +01:00
parent a2d6e90d06
commit 47fe59e4de

View File

@ -20,6 +20,7 @@
#ifndef DEBUGINFO_H #ifndef DEBUGINFO_H
#define DEBUGINFO_H #define DEBUGINFO_H
#include "config/i2-config.h"
#include "base/qstring.h" #include "base/qstring.h"
namespace icinga 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);
} }