Skip to content
Snippets Groups Projects
Commit 419e13d0 authored by Christian Goetze's avatar Christian Goetze
Browse files

fix wassert symbol problem, copied from cmake branch

parent a2a3985f
No related branches found
No related tags found
No related merge requests found
......@@ -58,6 +58,20 @@
#include "llcommandlineparser.h"
//*FIX:Mani - This hack is to fix a linker issue with libndofdev.lib
// The lib was compiled under VS2005 - in VS2003 we need to remap assert
#ifdef LL_DEBUG
#ifdef LL_MSVC7
extern "C" {
void _wassert(const wchar_t * _Message, const wchar_t *_File, unsigned _Line)
{
llerrs << _Message << llendl;
}
}
#endif
#endif
LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *exception_infop)
{
// *NOTE:Mani - this code is stolen from LLApp, where its never actually used.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment