From 918e64a39a8a14acbd662459cd9c6fa3b46095c6 Mon Sep 17 00:00:00 2001 From: Rich Mattes Date: Feb 25 2017 16:45:42 +0000 Subject: Fix backwards logic check in ARM patch --- diff --git a/ignition-math-3.0.0-arm.patch b/ignition-math-3.0.0-arm.patch index e9f35b2..02f3315 100644 --- a/ignition-math-3.0.0-arm.patch +++ b/ignition-math-3.0.0-arm.patch @@ -56,7 +56,7 @@ diff -up ./src/Helpers_TEST.cc.arm ./src/Helpers_TEST.cc } -#ifndef _MSC_VER -+#if defined _MSC_VER || defined __arm__ ++#if !defined _MSC_VER && !defined __arm__ // Iterate over large numbers, and check for unique keys. for (math::PairInput a = math::MAX_UI32-5000; a < math::MAX_UI32; a++) {