summaryrefslogtreecommitdiff
path: root/src/vterowdata.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/vterowdata.cc')
-rw-r--r--src/vterowdata.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vterowdata.cc b/src/vterowdata.cc
index 1f00ae53..6b8efbdd 100644
--- a/src/vterowdata.cc
+++ b/src/vterowdata.cc
@@ -30,11 +30,11 @@
/* This will be true now that VteCell is POD, but make sure it'll be true
* once that changes.
*/
-static_assert(std::is_trivially_copy_constructible<VteCell>::value, "VteCell is not trivially copyable");
-static_assert(std::is_trivially_move_constructible<VteCell>::value, "VteCell is not trivially copyable");
+static_assert(std::is_trivially_copy_constructible<VteCell>::value, "VteCell is not copy constructible");
+static_assert(std::is_trivially_move_constructible<VteCell>::value, "VteCell is not move constructible");
static_assert(std::is_trivially_copyable<VteCell>::value, "VteCell is not trivially copyable");
-static_assert(std::is_trivially_copy_assignable<VteCell>::value, "VteCell is not trivially movable");
-static_assert(std::is_trivially_move_assignable<VteCell>::value, "VteCell is not trivially movable");
+static_assert(std::is_trivially_copy_assignable<VteCell>::value, "VteCell is not copy assignable");
+static_assert(std::is_trivially_move_assignable<VteCell>::value, "VteCell is not move assignable");
/*
* VteCells: A row's cell array