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 2018/12/21 00:19:39 UTC

[arrow] branch master updated: ARROW-4093: [C++] Fix wrong suggested method name

This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new c6d97c5  ARROW-4093: [C++] Fix wrong suggested method name
c6d97c5 is described below

commit c6d97c59ef047cc9d5e2836b1945df26cd7c4622
Author: Kouhei Sutou <ko...@clear-code.com>
AuthorDate: Thu Dec 20 18:19:29 2018 -0600

    ARROW-4093: [C++] Fix wrong suggested method name
    
    Author: Kouhei Sutou <ko...@clear-code.com>
    
    Closes #3238 from kou/cpp-fix-typo and squashes the following commits:
    
    b5b880af9 <Kouhei Sutou>  Fix wrong suggested method name
---
 cpp/src/arrow/type.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cpp/src/arrow/type.h b/cpp/src/arrow/type.h
index 95b5189..eb00f43 100644
--- a/cpp/src/arrow/type.h
+++ b/cpp/src/arrow/type.h
@@ -525,7 +525,7 @@ class ARROW_EXPORT StructType : public NestedType {
   ARROW_DEPRECATED("Use GetFieldByName")
   std::shared_ptr<Field> GetChildByName(const std::string& name) const;
 
-  ARROW_DEPRECATED("Use GetChildIndex")
+  ARROW_DEPRECATED("Use GetFieldIndex")
   int GetChildIndex(const std::string& name) const;
 
  private: