The following code compiles and does the "right thing" :

#include <boost/variant.hpp>
#include <iostream>

int main()
{
  int a = 10;
  boost::variant<int&, float&> x = a;
  a = 20;
  std::cout << boost::get<int&>(x) << "\n";
  return 0;
}

How does boost::variant store a reference? According to C++ standard, how references are stored is completely up to the compiler. Actually, how does boost::variant even know how many bytes is taken up by a reference? sizeof(T&) == sizeof(T), so it can't be using sizeof() operator. Now, I know references are most probably implemented as pointers, but there is no guarantee in the language. A good explanation of how get<> and visitation works when the variant is storing references get extra points :)

link|improve this question

29% accept rate
4  
By wrapping them in an object. << sizeof(std::vector<char>&), sizeof(std::vector<char>), sizeof(T); struct T { std::vector<char>& r; }; 56, 56, 8 – Lightness Races in Orbit Feb 16 at 1:38
2  
"Member for 10 months, 7 questions, 0% accept rate." Do you know how to accept an answer? – André Caron Feb 16 at 2:49
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.