avoid string copy in api
This commit is contained in:
parent
7b4ab178c2
commit
4f2c9ed1c2
|
@ -16,7 +16,7 @@ class GwApi{
|
||||||
double value=0;
|
double value=0;
|
||||||
bool valid=false;
|
bool valid=false;
|
||||||
BoatValue(){}
|
BoatValue(){}
|
||||||
BoatValue(String n):name(n){
|
BoatValue(const String &n):name(n){
|
||||||
}
|
}
|
||||||
void setFormat(const String &format){
|
void setFormat(const String &format){
|
||||||
if (formatSet) return;
|
if (formatSet) return;
|
||||||
|
|
Loading…
Reference in New Issue