Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PI2
PI2 View
Commits
e76f71b8
Commit
e76f71b8
authored
Jan 07, 2019
by
Martin Kröning
🦀
Browse files
Fix typo
parent
73f7597e
Changes
3
Hide whitespace changes
Inline
Side-by-side
pi2-demo/src/MapAppABIWrapper.cpp
View file @
e76f71b8
...
...
@@ -25,7 +25,7 @@ void MapAppABIWrapper::addOrReplaceVehicle(
const
std
::
string
&
vehicleName
,
const
std
::
string
&
laneName
,
const
double
positionOnLane
,
const
double
speed
,
const
double
remainingFuel
,
const
double
red
,
const
double
green
,
const
double
blue
)
{
mapApp
a
ddOrReplaceVehicle
(
mapApp
,
vehicleName
.
c_str
(),
laneName
.
c_str
(),
mapApp
A
ddOrReplaceVehicle
(
mapApp
,
vehicleName
.
c_str
(),
laneName
.
c_str
(),
positionOnLane
,
speed
,
remainingFuel
,
red
,
green
,
blue
);
}
...
...
pi2-view/include/MapAppABI.h
View file @
e76f71b8
...
...
@@ -14,7 +14,7 @@ void mapAppAddJunction(MapApp *mapApp, double x, double y);
void
mapAppAddRoad
(
MapApp
*
mapApp
,
const
char
*
laneThereName
,
const
char
*
laneBackName
,
const
double
*
coordinates
,
size_t
coordinateCount
);
void
mapApp
a
ddOrReplaceVehicle
(
MapApp
*
mapApp
,
const
char
*
vehicleName
,
void
mapApp
A
ddOrReplaceVehicle
(
MapApp
*
mapApp
,
const
char
*
vehicleName
,
const
char
*
roadName
,
double
positionOnLane
,
double
speed
,
double
remainingFuel
,
double
red
,
double
green
,
double
blue
);
...
...
pi2-view/src/MapAppABI.cpp
View file @
e76f71b8
...
...
@@ -32,7 +32,7 @@ void mapAppAddRoad(MapApp *mapApp, gsl::czstring<> laneThereName,
mapApp
->
addRoad
(
laneThereName
,
laneBackName
,
coordinateVector
);
}
void
mapApp
a
ddOrReplaceVehicle
(
MapApp
*
mapApp
,
gsl
::
czstring
<>
vehicleName
,
void
mapApp
A
ddOrReplaceVehicle
(
MapApp
*
mapApp
,
gsl
::
czstring
<>
vehicleName
,
gsl
::
czstring
<>
roadName
,
const
double
positionOnLane
,
const
double
speed
,
const
double
remainingFuel
,
const
double
red
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment