00001 # ifndef ALIGNED_BUFFER_H 00002 # define ALIGNED_BUFFER_H 00003 00004 _STLP_BEGIN_NAMESPACE 00005 // this is for fake initialization 00006 template<class T> 00007 union _Stl_aligned_buffer { 00008 char buf[sizeof(T)]; 00009 struct { double a; double b; } padding; 00010 }; 00011 _STLP_END_NAMESPACE 00012 00013 # endif