Files
scylladb/cql3
Avi Kivity ddee5e817a Workaround boost::any_cast bug
any_cast<X> is supposed to return X, but boost 1.55's any_cast<X> returns
X&&.  This means the lifetime-extending construct

   auto&& x = boost::any_cast<X>(...);

will not work, because the result of the expression is an rvalue reference,
not a true temporary.

Fix by using a temporary, not a lifetime-extending reference.

Fixes #163.
2015-08-19 09:15:31 +03:00
..
2015-07-10 10:49:30 +03:00
2015-07-10 10:49:30 +03:00
2015-07-21 14:46:34 +02:00
2015-07-21 14:46:34 +02:00
2015-08-04 10:59:13 +02:00
2015-07-10 10:42:10 +03:00
2015-07-10 10:42:10 +03:00
2015-08-19 09:15:31 +03:00
2015-02-04 10:29:00 +01:00
2015-07-08 10:02:31 +02:00
2015-05-12 16:32:56 +03:00
2015-07-08 10:02:31 +02:00