mirror of https://github.com/Chlumsky/msdfgen.git
remove unused return value
This commit is contained in:
parent
cae6677d28
commit
60feec1a33
|
|
@ -52,14 +52,13 @@ static bool readDouble(double &output, const char *&pathDef) {
|
|||
return false;
|
||||
}
|
||||
|
||||
static bool consumeOptionalComma(const char *&pathDef) {
|
||||
static void consumeOptionalComma(const char *&pathDef) {
|
||||
while (*pathDef == ' ') {
|
||||
++pathDef;
|
||||
}
|
||||
if (*pathDef == ',') {
|
||||
++pathDef;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool buildFromPath(Shape &shape, const char *pathDef) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue