
13 Dec
2013
13 Dec
'13
5:16 p.m.
Hello Boost users,
Using the following sample code I have some crash in VS2013 but it works
fine in LLVM on OSX
Is this is a mistake on my side or an issue elsewhere ?
#include <string>
#include <cstdint>
#include <vector>
#include
string_flyweight;
typedef boost::variant< bool, double, string_flyweight
Variant;
int main(void) { std::vector<Variant> v = { 1., true, string_flyweight("toto") }; return 0; } Thanks, -- Olivier TRISTAN uvi.net