~unity-team/nux/bionic

« back to all changes in this revision

Viewing changes to NuxCore/LoggingWriter.cpp

  • Committer: Bileto Bot
  • Author(s): Eleni Maria Stea, Eleni Maria Stea
  • Date: 2017-01-10 14:29:17 UTC
  • mfrom: (881.2.4 nux.fixed-smart-ptr)
  • Revision ID: ci-train-bot@canonical.com-20170110142917-4ba4i21mozq13pmm
replaced std::shared_ptr with boost::shared_ptr to fix compile errors

Approved by: Marco Trevisan (Treviño)

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
struct StreamWrapper
49
49
{
50
 
  typedef boost::shared_ptr<StreamWrapper> Ptr;
 
50
  typedef std::shared_ptr<StreamWrapper> Ptr;
51
51
 
52
52
  StreamWrapper(std::ostream& output) : out(output) {}
53
53
  std::ostream& out;