From 8dbe4a753172ddf0ac1b4124b0b49871ec681aa6 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Fri, 17 Mar 2017 13:57:09 +0300 Subject: [PATCH] NuttX workaround --- matrix/stdlib_imports.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix/stdlib_imports.hpp b/matrix/stdlib_imports.hpp index 2667a10b1c..4d24b814cf 100644 --- a/matrix/stdlib_imports.hpp +++ b/matrix/stdlib_imports.hpp @@ -40,7 +40,7 @@ using std::frexp; using std::ldexp; using std::modf; -#if __cplusplus >= 201103L +#if (__cplusplus >= 201103L) && !defined(__PX4_NUTTX) using std::imaxabs; using std::imaxdiv;