Commits


jensenrichardson authored and Antoine Pitrou committed 19d677a1584
ARROW-10503: [C++] Uriparser will not compile using Intel compiler At some point, Intel changed __force_inline to __forceinline. Arrow does not compile without this. Changes the header file to redefine the macro from __force_inline to __forceinline. Source: [here](https://software.intel.com/content/www/us/en/develop/documentation/cpp-compiler-developer-guide-and-reference/top/compiler-reference/compiler-options/compiler-option-details/inlining-options/inline-forceinline-qinline-forceinline.html) Closes #8600 from jensenrichardson/patch-1 Authored-by: jensenrichardson <61769418+jensenrichardson@users.noreply.github.com> Signed-off-by: Antoine Pitrou <antoine@python.org>