Skip to content

Commit

Permalink
Merge pull request #22 from jazi007/dev/nj/fix-win-size_t
Browse files Browse the repository at this point in the history
fix(win): windows size hot fix
  • Loading branch information
ytakano authored Apr 15, 2024
2 parents fc431a1 + d2cbe6c commit 5ee7aa2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "safe_drive"
version = "0.3.9"
version = "0.3.10"
edition = "2021"
authors = ["Yuuki Takano <[email protected]>, TIER IV, Inc.", "Seio Inoue"]
description = "safe_drive: Formally Specified Rust Bindings for ROS2"
Expand Down
2 changes: 1 addition & 1 deletion src/rcl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub use humble::{
};

#[cfg(feature = "humble")]
pub type size_t = u64;
pub type size_t = humble::size_t;

#[cfg(feature = "iron")]
#[allow(unused_imports)]
Expand Down

0 comments on commit 5ee7aa2

Please sign in to comment.