Incorrect PREDEFINED setting.
authoralbert-github <albert.tests@gmail.com>
Sat, 4 Apr 2020 13:30:38 +0000 (15:30 +0200)
committeralbert-github <albert.tests@gmail.com>
Sat, 4 Apr 2020 16:50:15 +0000 (16:50 +0000)
commit2d387356de6c869857871c2c661f25829c496154
tree24790d98fd0b70bf5dfae0c6fc271cabde585c26
parent0812207db7ee1ab304730253cb89db6c25571762
Incorrect PREDEFINED setting.

The PREDEFINED setting for  had a space between the define name and the equal sign and this is not allowed, it results in the warning:
```
error: Illegal PREDEFINED format '=', no define name specified
```
according to the documentation explicitly states that no space is allowed:
> The PREDEFINED tag can be used to specify one or more macro names that are defined before the preprocessor is started (similar to the -D option of e.g. gcc). The argument of the tag is a list of macros of the form: name or name=definition (no spaces). If the definition and the "=" are omitted, "=1" is assumed. To prevent a macro definition from being undefined via #undef or recursively expanded use the := operator instead of the = operator.
doc/Doxyfile.in