Skip to content

Commit

Permalink
Fix the rmw_connextdds_common build with gcc 13.2. (#142)
Browse files Browse the repository at this point in the history
The most important fix here is to #include <cstdint>,
but also make sure we #include for all used STL functions.

Signed-off-by: Chris Lalancette <clalancette@gmail.com>
  • Loading branch information
clalancette authored Mar 9, 2024
1 parent d2bd908 commit 8bec0e1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions rmw_connextdds_common/src/ndds/dds_api_ndds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,14 @@
// See the License for the specific language governing permissions and
// limitations under the License.

#include <string>
#include <cmath>
#include <cstdint>
#include <cstdio>
#include <map>
#include <new>
#include <regex>
#include <string>
#include <vector>
#include <cmath>

#include "rcpputils/scope_exit.hpp"

Expand Down

0 comments on commit 8bec0e1

Please sign in to comment.