Files
scylladb/cql3/functions
Rafael Ávila de Espíndola ad6d65dbbd Everywhere: Explicitly instantiate make_shared
seastar::make_shared has a constructor taking a T&&. There is no such
constructor in std::make_shared:

https://en.cppreference.com/w/cpp/memory/shared_ptr/make_shared

This means that we have to move from

    make_shared(T(...)

to

    make_shared<T>(...)

If we don't want to depend on the idiosyncrasies of
seastar::make_shared.

Signed-off-by: Rafael Ávila de Espíndola <espindola@scylladb.com>
2020-07-21 10:33:49 -07:00
..
2018-11-21 00:01:44 +02:00
2020-06-08 11:28:57 +03:00
2020-06-08 11:28:57 +03:00
2020-02-17 10:59:15 +01:00