-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't call rstrip on the result of Node.text()
The result of calling Node.text() should already have leading and trailing whitespace stripped so there's no need to call rstrip() on it. This will hopefully help zero in on where trailing whitespace is creeping in from certain bits of Doxygen XML. This leaves the following places where we explicit strip trailing whitespace: 1. In `<computeroutput>` elements 2. In function definitions (where the `<type>` of a `<param>` might have trailing space) 3. In a macro definition (where the `<initializer>` might have trailing space)
- Loading branch information
Showing
2 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters