Skip to content

Commit

Permalink
using std::shared_ptr instead xtd::ptr
Browse files Browse the repository at this point in the history
  • Loading branch information
gammasoft71 committed Nov 18, 2024
1 parent e1c8c51 commit e39a562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xtd.core/include/xtd/basic_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,6 @@ namespace xtd {
object sync_root;
};

xtd::ptr<struct data> data_ = xtd::new_ptr<struct data>();
std::shared_ptr<struct data> data_ = std::make_shared<struct data>();
};
}

0 comments on commit e39a562

Please sign in to comment.