Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARROW-1419: [GLib] Suppress sign-conversion warnings
Apache Arrow C++ uses int as result type for expression that uses size_t. It causes sign-conversion warning but the coding style is expected. Example: .../arrow/buffer.h:296:41: warning: implicit conversion changes signedness: 'unsigned long' to 'int64_t' (aka 'long') [-Wsign-conversion] int64_t length() const { return size_ / sizeof(T); } ~~~~~~ ~~~~~~^~~~~~~~~~~ Author: Kouhei Sutou <[email protected]> Closes apache#999 from kou/glib-suppress-warning-on-clang and squashes the following commits: 397490e [Kouhei Sutou] [GLib] Suppress sign-conversion warnings
- Loading branch information