File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -765,7 +765,7 @@ namespace RTE {
765
765
// / Returns Impulse vector in newtons of the specified Impulse record.
766
766
// / @param n Impulse record index to get data from.
767
767
// / @return Impulse vector in newtons of the specified Impulse record.
768
- Vector GetImpulseVector (int n) {
768
+ Vector GetImpulseVector (unsigned int n) {
769
769
if (n > 0 && n < m_ImpulseForces.size ())
770
770
return m_ImpulseForces[n].first ;
771
771
else
@@ -785,7 +785,7 @@ namespace RTE {
785
785
// / Returns offset vector in METERS (not pixels) of the specified Impulse record.
786
786
// / @param n Impulse record index to get data from.
787
787
// / @return Offset vector in meters of the specified Impulse record.
788
- void SetImpulseVector (int n, Vector v) {
788
+ void SetImpulseVector (unsigned int n, Vector v) {
789
789
if (n > 0 && n < m_ImpulseForces.size ())
790
790
m_ImpulseForces[n].first = v;
791
791
}
You can’t perform that action at this time.
0 commit comments