Fixed ErrorFlag not being exported

Former-commit-id: 0b24f1beb68333806bb6b29786e1ea05a0802638
This commit is contained in:
Lynix 2013-11-06 23:53:55 +01:00
parent b7b65d7119
commit 7f7e8d8567
2 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,7 @@
#include <Nazara/Core/Enums.hpp>
#include <Nazara/Core/NonCopyable.hpp>
class NzErrorFlags : NzNonCopyable
class NAZARA_API NzErrorFlags : NzNonCopyable
{
public:
NzErrorFlags(nzUInt32 flags, bool replace = false);

View File

@ -122,4 +122,3 @@ NzString NzError::s_lastError;
const char* NzError::s_lastErrorFunction = "";
const char* NzError::s_lastErrorFile = "";
unsigned int NzError::s_lastErrorLine = 0;