// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#undef new
#endif
+#include "wx/beforestd.h"
#if wxUSE_IOSTREAMH
#include <iostream.h>
#include <fstream.h>
#include <iostream>
#include <fstream>
#endif
+#include "wx/afterstd.h"
#include <ctype.h>
#include "tex2any.h"
while ((i < len) && (isdigit(ch) || ch == '.'))
{
- numberBuf[j] = ch;
+ numberBuf[j] = (wxChar)ch;
j ++;
i ++;
ch = value[i];