summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-03 23:00:31 +0100
committerMurray Cumming <murrayc@murrayc.com>2016-03-03 23:00:31 +0100
commit9dd5fdcbeedddd62af0f61442be4ac92b9205947 (patch)
tree8fa4612f1d4375e50da6c7854a5c1c2d0901ea53
parent8ce5c936facedf08273e31d71701f09a245c0e33 (diff)
downloadsigc++-9dd5fdcbeedddd62af0f61442be4ac92b9205947.tar.gz
Fix a typo in a static_asser() error message.
-rw-r--r--sigc++/adaptors/bind.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sigc++/adaptors/bind.h b/sigc++/adaptors/bind.h
index 2980202..3046c04 100644
--- a/sigc++/adaptors/bind.h
+++ b/sigc++/adaptors/bind.h
@@ -130,7 +130,7 @@ struct bind_functor : public adapts<T_functor>
//Prevent calling tuple_start<> with values that will cause a compilation error.
static_assert(I_location <= t_args_size,
- "I_location must be less or equal to the number of arguments.");
+ "I_location must be less than or equal to the number of arguments.");
auto t_start = internal::tuple_start<I_location>(t_args);
auto t_bound = internal::tuple_transform_each<internal::TransformEachInvoker>(bound_);