2
0
mirror of https://github.com/boostorg/variant.git synced 2026-02-11 00:12:08 +00:00

Bug fix: did not return visitation result.

[SVN r18810]
This commit is contained in:
Eric Friedman
2003-06-16 21:28:08 +00:00
parent 9466ba58f8
commit 66051a239e

View File

@@ -66,7 +66,7 @@ public: // unary function operators
CV__ Visitable& visitable \
) \
{ \
apply_visitor(visitor_, visitable); \
return apply_visitor(visitor_, visitable); \
} \
/**/
@@ -86,7 +86,7 @@ public: // binary function operators
, CV2__ Visitable2& visitable2 \
) \
{ \
apply_visitor(visitor_, visitable1, visitable2); \
return apply_visitor(visitor_, visitable1, visitable2); \
} \
/**/