Commits


Kouhei Sutou authored and Wes McKinney committed 7edfbae58fd
ARROW-3287: [C++] Suppress "redeclared without dllimport attribute" warning from MinGW This fixes the following warning from MinGW: ../apache-arrow-0.11.0/c_glib/../cpp/src/arrow/status.h:265:8: warning: 'arrow::Status::Status(arrow::Status&&)' redeclared without dllimport attribute after being referenced with dll linkage inline Status::Status(Status&& s) noexcept : state_(s.state_) { s.state_ = NULL; } ^~~~~~ Author: Kouhei Sutou <kou@clear-code.com> Closes #2602 from kou/cpp-add-missing-inline and squashes the following commits: d4c18a750 <Kouhei Sutou> Add missing inline