Skip to content
This repository was archived by the owner on Mar 1, 2025. It is now read-only.

Commit 07785b7

Browse files
authored
include cstdint for SIZE_MAX (#86)
GCC 15 is removing cstdint from the C++ Standard Library.
1 parent 2e3659c commit 07785b7

29 files changed

+46
-0
lines changed

OndselSolver/AbsConstraint.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "Constraint.h"
1214
namespace MbD {
1315
class AbsConstraint : public Constraint

OndselSolver/AngleZConstraintIqcJc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "AngleZConstraintIJ.h"
1214

1315
namespace MbD {

OndselSolver/AngleZConstraintIqcJqc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "AngleZConstraintIqcJc.h"
1214

1315
namespace MbD {

OndselSolver/AnyPosICNewtonRaphson.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "PosNewtonRaphson.h"
1214
#include "DiagonalMatrix.h"
1315

OndselSolver/AtPointConstraintIqcJc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "AtPointConstraintIJ.h"
1214

1315
namespace MbD {

OndselSolver/AtPointConstraintIqcJqc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "AtPointConstraintIqcJc.h"
1214

1315
namespace MbD {

OndselSolver/ConstVelConstraintIqcJc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "ConstVelConstraintIJ.h"
1214

1315
namespace MbD {

OndselSolver/ConstVelConstraintIqcJqc.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
#pragma once
1010

11+
#include <cstdint>
12+
1113
#include "ConstVelConstraintIqcJc.h"
1214

1315
namespace MbD {

OndselSolver/Constraint.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include <functional>
1010
#include <chrono>
11+
#include <cstdint>
1112

1213
#include "Constraint.h"
1314
#include "FullColumn.h"

OndselSolver/Constraint.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#pragma once
1010

11+
#include <cstdint>
1112
#include <memory>
1213

1314
#include "enum.h"

0 commit comments

Comments
 (0)