Repository: arrow
Updated Branches:
  refs/heads/master 51b6bf253 -> ddf766db2


[Doc] Change cpp api doc, std:shared_pointer_cast to std::static_pointer_cast

Change-Id: Ib5b61398cb06a5f76d701e403f61d17953a75bb8


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/ddf766db
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/ddf766db
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/ddf766db

Branch: refs/heads/master
Commit: ddf766db23539707218586415290eb14f37cb5d5
Parents: 51b6bf2
Author: kimanjun <kumar.m.ki...@gmail.com>
Authored: Mon May 29 14:52:17 2017 +0530
Committer: Wes McKinney <wes.mckin...@twosigma.com>
Committed: Wed May 31 17:58:12 2017 -0400

----------------------------------------------------------------------
 cpp/apidoc/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/ddf766db/cpp/apidoc/index.md
----------------------------------------------------------------------
diff --git a/cpp/apidoc/index.md b/cpp/apidoc/index.md
index fc10e0f..923fc5b 100644
--- a/cpp/apidoc/index.md
+++ b/cpp/apidoc/index.md
@@ -70,7 +70,7 @@ As the fourth entry is null, the value at that position in 
the buffer is
 undefined.
 
     // Cast the Array to its actual type to access its data
-    std::shared_ptr<Int64Array> int64_array = 
std::shared_pointer_cast<Int64Array>(array);
+    std::shared_ptr<Int64Array> int64_array = 
std::static_pointer_cast<Int64Array>(array);
 
     // Get the pointer to the null bitmap.
     const uint8_t* null_bitmap = int64_array->null_bitmap_data();

Reply via email to