summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Base/Log.h')
-rw-r--r--Swiften/Base/Log.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Swiften/Base/Log.h b/Swiften/Base/Log.h
index 06f5b55..6d76dc6 100644
--- a/Swiften/Base/Log.h
+++ b/Swiften/Base/Log.h
@@ -2,20 +2,22 @@
* Copyright (c) 2010-2012 Remko Tronçon
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <iostream>
+#include <Swiften/Base/API.h>
+
namespace Swift {
- extern bool logging;
+ extern SWIFTEN_API bool logging;
namespace LogDetail {
// Only here to be able to statically check the correctness of the severity levers
namespace Severity {
enum {
debug, info, warning, error
};
}
}
}