Skip to content

Some make_shared cleanup

Fabian Boemer requested to merge fboemer/make-shared into dev
  • Replace uses of shared_ptr<T> name(new T(args)) with auto name = std::make_shared<T>(args)
  • Note, Ciphertext and EncodingParams are typedef'd to shared_ptrs, but these have not been changed

Fixes: #86 (closed)

Edited by Fabian Boemer

Merge request reports