Skip to content

Commit

Permalink
Fix missing includes (OpenCyphal#257)
Browse files Browse the repository at this point in the history
* Fix missing includes

* Update version.py

Co-authored-by: Scott Dixon <dixonsco@amazon.com>
  • Loading branch information
asmfreak and thirtytwobits authored May 25, 2022
1 parent 142d6d5 commit 1dc9cfb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/nunavut/lang/cpp/support/serialization.j2
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,11 @@ static_assert(__cplusplus >= 201100L,
#include <climits>
#include <cfloat>
{% endif -%}
#include <cstdint>
#include <cstdint> // for memset
#include <array> // for std::array
#include <algorithm> // for std::max, std::min
#include <utility> // for std::move
#include <type_traits> // std::underlying_type, std::aligned_storage

{% if not options.omit_float_serialization_support -%}
/// Detect whether the target platform is compatible with IEEE 754.
Expand Down
2 changes: 1 addition & 1 deletion src/nunavut/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
.. autodata:: __version__
"""

__version__ = "1.8.1" #: The version number used in the release of nunavut to pypi.
__version__ = "1.8.2" #: The version number used in the release of nunavut to pypi.


__license__ = "MIT"

0 comments on commit 1dc9cfb

Please sign in to comment.