You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/05/31 21:58:54 UTC

arrow git commit: [Doc] Change cpp api doc, std:shared_pointer_cast to std::static_pointer_cast [Forced Update!]

Repository: arrow
Updated Branches:
  refs/heads/master ddf766db2 -> 530f0da34 (forced update)


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

Closes #717

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/530f0da3
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/530f0da3
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/530f0da3

Branch: refs/heads/master
Commit: 530f0da3439dc3da7b2e3cf6a2175bcc5efe1eea
Parents: 51b6bf2
Author: kimanjun <ku...@gmail.com>
Authored: Mon May 29 14:52:17 2017 +0530
Committer: Wes McKinney <we...@twosigma.com>
Committed: Wed May 31 17:58:41 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/arrow/blob/530f0da3/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();