Commit 7edfbae
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 apache#2602 from kou/cpp-add-missing-inline and squashes the following commits:
d4c18a7 <Kouhei Sutou> Add missing inline1 parent e2c4b09 commit 7edfbae
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
0 commit comments