Dr. Dobb's is part of the Informa Tech Division of Informa PLC

This site is operated by a business or businesses owned by Informa PLC and all copyright resides with them. Informa PLC's registered office is 5 Howick Place, London SW1P 1WG. Registered in England and Wales. Number 8860726.


Welcome Guest | Log In | Register | Benefits
Channels ▼
RSS

An Efficient Variant Type


November, 2005: An Efficient Variant Type

Listing 4


  union object_holder
  {
    // used fields
    char buffer[ANY_BUFFER_SIZE];
    void* pointer;
    // the following is just to help assure alignment
    boost::detail::max_align  alignment_dummy_[any_buffer_elements];
  };


Related Reading


More Insights