mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
2e60e1b1f2
This is very similar to std::unique_ptr, but doesn't require including the <memory> header which pulls lots of c++ headers and cause problems with nuttx headers. It's header-only. It contains an explanation on what it solves, how to use and unit tests.
8 lines
104 B
Python
8 lines
104 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_find_tests(
|
|
use='ap',
|
|
)
|