felipealmeida pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=88419e5e87152cf28d64c9e7d35993785e68fbe2

commit 88419e5e87152cf28d64c9e7d35993785e68fbe2
Author: Felipe Magno de Almeida <fel...@expertisesolutions.com.br>
Date:   Thu Sep 22 19:27:56 2016 -0300

    eina-cxx: Implement aligned_union for GCC 4.9
---
 src/bindings/cxx/eina_cxx/eina_aligned_union.hh | 31 +++++++++++++++++++++++++
 src/bindings/cxx/eina_cxx/eina_variant.hh       |  4 +++-
 2 files changed, 34 insertions(+), 1 deletion(-)

diff --git a/src/bindings/cxx/eina_cxx/eina_aligned_union.hh 
b/src/bindings/cxx/eina_cxx/eina_aligned_union.hh
new file mode 100644
index 0000000..eabe878
--- /dev/null
+++ b/src/bindings/cxx/eina_cxx/eina_aligned_union.hh
@@ -0,0 +1,31 @@
+#ifndef EFL_EINA_EINA_ALIGNED_UNION_HH_
+#define EFL_EINA_EINA_ALIGNED_UNION_HH_
+
+namespace efl { namespace eina { namespace _mpl {
+
+template <std::size_t...Numbers>
+struct max;
+
+template <std::size_t A0>
+struct max<A0> : std::integral_constant<std::size_t, A0> {};
+
+template <std::size_t A0, std::size_t A1, std::size_t...Args>
+struct max<A0, A1, Args...> : max<(A0 > A1 ? A0 : A1), Args...> {};
+
+}
+
+// Workaround needed for GCC before 5.1
+template <std::size_t Min, typename...Args>
+struct aligned_union
+{
+   static constexpr std::size_t alignment_value = 
_mpl::max<alignof(Args)...>::value;
+
+   typedef typename std::aligned_storage
+   < _mpl::max<Min, sizeof(Args)...>::value
+     , alignment_value >::type type;
+};
+
+} }
+
+#endif
+
diff --git a/src/bindings/cxx/eina_cxx/eina_variant.hh 
b/src/bindings/cxx/eina_cxx/eina_variant.hh
index 6bdd1a9..fb92954 100644
--- a/src/bindings/cxx/eina_cxx/eina_variant.hh
+++ b/src/bindings/cxx/eina_cxx/eina_variant.hh
@@ -7,6 +7,8 @@
 #include <type_traits>
 #include <tuple>
 
+#include <eina_aligned_union.hh>
+
 namespace efl { namespace eina {
 
 namespace _impl {
@@ -236,7 +238,7 @@ private:
      new (&buffer) T(std::move(object));
    }
   
-   typedef typename std::aligned_union<1, Args...>::type buffer_type;
+   typedef typename eina::aligned_union<1, Args...>::type buffer_type;
 
    friend bool operator==(variant<Args...> const& lhs, variant<Args...> const& 
rhs)
    {

-- 


Reply via email to