diff --git a/traits.hpp b/traits.hpp index ce1f2dc..6124e14 100644 --- a/traits.hpp +++ b/traits.hpp @@ -100,11 +100,14 @@ namespace vk { static constexpr auto func = vkCreateGraphicsPipelines; }; - template <> struct life_traits { - template - static constexpr auto create = create_traits

::func; - static constexpr auto destroy = vkDestroyPipeline; - }; + // XXX: Currently causes a segfault under gcc-5.3.0 when stabs debgging is + // enabled. See gcc#71058 + // + //template <> struct life_traits { + // template + // static constexpr auto create = create_traits

::func; + // static constexpr auto destroy = vkDestroyPipeline; + //}; template <> struct life_traits { static constexpr auto create = vkCreatePipelineCache;