mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
msvc: Proper fix for compilation of TexRow
This bug in MSVC 10 was fixed at e948caf6
, but the workaround belongs to
strfwd.h.
Thanks Vincent and Georg.
This commit is contained in:
parent
990446c0e1
commit
7a60c96dfa
@ -14,13 +14,6 @@
|
||||
|
||||
#include "support/docstring.h"
|
||||
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1600)
|
||||
// Ugly workaround for MSVC10 STL bug:
|
||||
// std::numpunct has a hardcoded dllimport in definition, but we wanna it with 32 bit
|
||||
// so we can't import it and must define it but then the compiler complains.
|
||||
#include "support/numpunct_lyx_char_type.h"
|
||||
#endif
|
||||
|
||||
#include <fstream>
|
||||
#include <sstream>
|
||||
|
||||
|
@ -61,6 +61,15 @@ typedef basic_ostringstream<char, char_traits<char>, allocator<char> > ostringst
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
// Ugly workaround for MSVC10 STL bug:
|
||||
// std::numpunct has a hardcoded dllimport in definition, but we wanna it with 32 bit
|
||||
// so we can't import it and must define it but then the compiler complains.
|
||||
#if defined(_MSC_VER) && (_MSC_VER >= 1600)
|
||||
#include "support/numpunct_lyx_char_type.h"
|
||||
#endif
|
||||
|
||||
|
||||
namespace lyx {
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user