Update documentation and remove unused code.

[SVN r81703]
This commit is contained in:
Glen Fernandes
2012-12-04 11:21:24 +00:00
parent 188602581d
commit 2d3cc0db7d
2 changed files with 2 additions and 10 deletions
+2 -2
View File
@@ -218,8 +218,8 @@ boost::shared_ptr<int[]> a4 = boost::make_shared<int[]>({1, 2, 3});
boost::shared_ptr<int[3]> a5 = boost::make_shared<int[3]>({1, 2, 3});
boost::shared_ptr<int[][3]> a6 = boost::make_shared<int[][3]>(size, {1, 2, 3});
boost::shared_ptr<int[5][3]> a7 = boost::make_shared<int[5][3]>({1, 2, 3});
boost::shared_ptr<point[]> a8 = boost::make_shared<point[]>(4, {x, y});
boost::shared_ptr<point[4]> a9 = boost::make_shared<point[4]>({x, y});
boost::shared_ptr<point[]> a8 = boost::make_shared<point[]>(size, {x, y});
boost::shared_ptr<point[5]> a9 = boost::make_shared<point[5]>({x, y});
boost::shared_ptr<int[]> a10 = boost::make_shared_noinit<int[]>(size);
boost::shared_ptr&lt;int[5]&gt; a11 = boost::make_shared_noinit&lt;int[5]&gt;();</pre>
</blockquote>