mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
d80a0e47bc
This way we don't create problems regarding which header to include: we just include the normal/c++11 headers and everything works as it should.
12 lines
162 B
Plaintext
12 lines
162 B
Plaintext
#pragma once
|
|
|
|
#include_next <cstddef>
|
|
|
|
#if defined(HAVE_STD_NULLPTR_T) && !HAVE_STD_NULLPTR_T
|
|
|
|
namespace std {
|
|
typedef decltype(nullptr) nullptr_t;
|
|
}
|
|
|
|
#endif
|