c++/clr project for integration with mogre
I am getting the following error when compiling
error C2371: 'char16_t' : redefinition; different basic types C:\Projects\NoesisGUI\Include\EABase\eabase.h
Line 756: typedef wchar_t char16_t;
and the other file it is defined in
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\yvals.h
Line 576: typedef unsigned short char16_t;
error C2371: 'char16_t' : redefinition; different basic types C:\Projects\NoesisGUI\Include\EABase\eabase.h
Line 756: typedef wchar_t char16_t;
and the other file it is defined in
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\yvals.h
Line 576: typedef unsigned short char16_t;
Re: c++/clr project for integration with mogre
please, change in 'eabase.h' this
to
The next version of NoesisGui will fix this.
Code: Select all
typedef wchar_t char16_t;
Code: Select all
#if _MSC_VER < 1600
typedef wchar_t char16_t;
#endif
Re: c++/clr project for integration with mogre
Fixed in 0.9.5
Who is online
Users browsing this forum: Bing [Bot] and 2 guests