Repository: arrow
Updated Branches:
  refs/heads/master 59b24ba3b -> bf73d2724


ARROW-1545: Remove deprecated args of builder

Closes #1107

Change-Id: I9cb83279900aed8e04ef8baf049e30c5007e6538


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

Branch: refs/heads/master
Commit: bf73d2724cbdf402e2fbff5304fd9a842e9d6ddb
Parents: 59b24ba
Author: rvernica <rvern...@gmail.com>
Authored: Sun Sep 17 09:11:04 2017 -0700
Committer: Wes McKinney <wes.mckin...@twosigma.com>
Committed: Sun Sep 17 13:47:42 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/arrow/blob/bf73d272/cpp/apidoc/index.md
----------------------------------------------------------------------
diff --git a/cpp/apidoc/index.md b/cpp/apidoc/index.md
index 293241c..25be1f2 100644
--- a/cpp/apidoc/index.md
+++ b/cpp/apidoc/index.md
@@ -55,7 +55,7 @@ build these objects. To build an array of `int64_t` elements, 
we can use the
 `arrow::Int64Builder`. In the following example, we build an array of the range
 1 to 8 where the element that should hold the number 4 is nulled.
 
-    Int64Builder builder(arrow::default_memory_pool(), arrow::int64());
+    Int64Builder builder;
     builder.Append(1);
     builder.Append(2);
     builder.Append(3);

Reply via email to