build/stlport/src/aligned_buffer.h

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 #ifndef ALIGNED_BUFFER_H
     2 #define ALIGNED_BUFFER_H
     4 _STLP_BEGIN_NAMESPACE
     5 // this is for fake initialization
     6 template<class T>
     7 union _Stl_aligned_buffer {
     8   char buf[sizeof(T)];
     9   struct { double a; double b; } padding;
    11   T* operator&() {
    12     return __REINTERPRET_CAST(T*, this);
    13   }
    15   T const* operator&() const {
    16     return __REINTERPRET_CAST(T const*, this);
    17   }
    18 };
    19 _STLP_END_NAMESPACE
    21 #endif

mercurial