Skip to content

Commit 360f724

Browse files
pre-commit-ci[bot]Kenji Miyake
authored and
Kenji Miyake
committed
ci(pre-commit): autofix
1 parent ca034c2 commit 360f724

File tree

324 files changed

+7906
-8799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

324 files changed

+7906
-8799
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
autoware_auto_cmake {#autoware-auto-cmake-design}
2-
===========
1+
# autoware_auto_cmake {#autoware-auto-cmake-design}
32

43
This is the design document for the `autoware_auto_cmake` package.
54

6-
75
# Purpose
86

97
Provide common CMake variables and functions to Autoware packages.
@@ -13,8 +11,8 @@ Those include:
1311
- Setting the language standard
1412
- Getting user-provided variables
1513
- Providing functions to:
16-
+ set compiler flags
17-
+ turn off optimizations
14+
- set compiler flags
15+
- turn off optimizations
1816

1917
# Design
2018

@@ -24,6 +22,6 @@ Add `autoware_auto_cmake` as a "build_depend" in the dependent packages.
2422

2523
### CMake variables {#cmake-config-variables}
2624

27-
|Name|Type|Descritpion|Default|
28-
|----|----|-----------|-------|
29-
|`DOWNLOAD_ARTIFACTS`|*BOOL*|Allow downloading artifacts at build time.|`OFF`|
25+
| Name | Type | Descritpion | Default |
26+
| -------------------- | ------ | ------------------------------------------ | ------- |
27+
| `DOWNLOAD_ARTIFACTS` | _BOOL_ | Allow downloading artifacts at build time. | `OFF` |

common/autoware_auto_cmake/package.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212

1313
<build_depend>ros_environment</build_depend>
1414

15-
<buildtool_export_depend>ament_cmake_core</buildtool_export_depend>
16-
<buildtool_export_depend>ament_cmake_lint_cmake</buildtool_export_depend>
1715
<buildtool_export_depend>ament_cmake_copyright</buildtool_export_depend>
16+
<buildtool_export_depend>ament_cmake_core</buildtool_export_depend>
1817
<buildtool_export_depend>ament_cmake_cppcheck</buildtool_export_depend>
1918
<buildtool_export_depend>ament_cmake_cpplint</buildtool_export_depend>
19+
<buildtool_export_depend>ament_cmake_lint_cmake</buildtool_export_depend>
2020
<buildtool_export_depend>ament_cmake_uncrustify</buildtool_export_depend>
2121

2222
<test_depend>ament_cmake_lint_cmake</test_depend>

common/autoware_auto_common/design/comparisons.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
Comparisons {#helper-comparisons}
2-
===========
1+
# Comparisons {#helper-comparisons}
32

43
The `float_comparisons.hpp` library is a simple set of functions for performing approximate numerical comparisons.
54
There are separate functions for performing comparisons using absolute bounds and relative bounds. Absolute comparison checks are prefixed with `abs_` and relative checks are prefixed with `rel_`.
@@ -15,10 +14,10 @@ The `exclusive_or` function will test whether two values cast to different boole
1514

1615
# Assumptions
1716

18-
* The approximate comparisons all take an `epsilon` parameter.
19-
The value of this parameter must be >= 0.
20-
* The library is only intended to be used with floating point types.
21-
A static assertion will be thrown if the library is used with a non-floating point type.
17+
- The approximate comparisons all take an `epsilon` parameter.
18+
The value of this parameter must be >= 0.
19+
- The library is only intended to be used with floating point types.
20+
A static assertion will be thrown if the library is used with a non-floating point type.
2221

2322
# Example Usage
2423

0 commit comments

Comments
 (0)