diff options
| author | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-11-05 19:05:30 +0100 |
|---|---|---|
| committer | Rowan Goemans <RB.Goemans@student.han.nl> | 2017-11-05 19:05:30 +0100 |
| commit | 6c3b81d4aeb83518915e940bc02ccbbad43fabde (patch) | |
| tree | 9a0e0b2c2da8f6ddca710ee4a78ab94a01972305 | |
| parent | ee82af49581ab420377e7d1556ffd4a42057b79e (diff) | |
| parent | de9792646ba66f4965e8170613cee3efb1295d0a (diff) | |
| download | doxdocgen-6c3b81d4aeb83518915e940bc02ccbbad43fabde.tar.gz | |
Merge branch 'master' of https://github.com/christophschlosser/doxdocgen
| -rw-r--r-- | src/CodeParser/CParser/CParser.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/CodeParser/CParser/CParser.ts b/src/CodeParser/CParser/CParser.ts index 64948a0..6f598ad 100644 --- a/src/CodeParser/CParser/CParser.ts +++ b/src/CodeParser/CParser/CParser.ts @@ -85,7 +85,6 @@ export default class CParser implements ICodeParser { if (x.startsWith("public:") || x.startsWith("protected:") || x.startsWith("private:")) { return undefined; } - // Handle operator and decltype special cases. if (x.startsWith("operator") === true) { const startBrace: number = x.indexOf("("); |