remove unused return value

This commit is contained in:
Christopher Brown 2017-01-25 20:10:37 -08:00
parent cae6677d28
commit 60feec1a33
No known key found for this signature in database
GPG Key ID: 82DE34BDB05CDE65
1 changed files with 1 additions and 2 deletions

View File

@ -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) {