From a92a8b8e7a197a112f41e41ccac77541fd887eb9 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Thu, 26 Apr 2018 01:25:06 +0200 Subject: [PATCH] libptytty: Correct a typo to make it build with C++11 Upstream-Status: Backport Signed-off-by: Peter Kjellerstedt --- libptytty/src/estl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libptytty/src/estl.h b/libptytty/src/estl.h index 9552238..4e47392 100644 --- a/libptytty/src/estl.h +++ b/libptytty/src/estl.h @@ -67,7 +67,7 @@ private: { #if __cplusplus >= 201103L return std::is_trivially_assignable::value - && std::is_trivially_constructable::value + && std::is_trivially_constructible::value && std::is_trivially_copyable::value && std::is_trivially_destructible::value; #elif ECB_GCC_VERSION(4,4)