From 10853abb0a8a03525c712087b8bf211752388366 Mon Sep 17 00:00:00 2001 From: rbock Date: Thu, 21 Aug 2014 13:21:27 +0200 Subject: [PATCH] fixed static_assert message wording --- include/sqlpp11/column.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/sqlpp11/column.h b/include/sqlpp11/column.h index 9f9a089a..1ecbeb73 100644 --- a/include/sqlpp11/column.h +++ b/include/sqlpp11/column.h @@ -90,7 +90,7 @@ namespace sqlpp auto operator =(T t) const -> assignment_t> { using rhs = wrap_operand_t; - static_assert(_is_valid_operand::value, "invalid rhs operand assignment operand"); + static_assert(_is_valid_operand::value, "invalid rhs assignment operand"); return { *this, {rhs{t}} }; }