1
0
forked from boostorg/bind

Fix error in example.

This commit is contained in:
Peter Dimov
2015-01-22 21:48:54 +02:00
parent b2eb0a4ae8
commit 6ac4bef225

View File

@@ -76,7 +76,7 @@ object store a reference to an object, rather than a copy:
int i = 5;
bind(f, ref(i), _1);
bind(f, cref(42), _1);
bind(f, cref(i), _1);
[endsect]