András Dóczi
András Dóczi
Sometimes a segfault happens when opening "This calls" in the info tree. For example at [`tinyxml2::XMLDocument::SetError`](https://codecompass.net/demo/#wsid=TinyXML2&fid=13444780443610084403&select=2466|1|2491|2¢er=text). I fixed this by adding a check against the query matching nothing, like how...
This PR makes Clang tool invocations use the working directories of each compilation command. This fixes relative paths in arguments not being handled properly (#571), as previously the tool ran...
Fixes #544, which was caused by the children of the child caller nodes being set incorrectly. Recursions in the tree are also avoided now. There is one issue remaining that...
AST nodes that aren't located in any file are reported in the database as being located inside the working directory file. As a result, the directory that the parser was...
When parsing [Scintilla 3.10.6](https://sourceforge.net/p/scintilla/code/ci/rel-3-10-6/tree/), errors like this occur: ``` /mnt/linux/hg/scintilla-code/lexlib/Accessor.cxx:11:10: fatal error: 'ILexer.h' file not found #include "ILexer.h" ``` This is because Scintilla uses spaces in the include flags, like...
There are three closely related issues with navigation. - [ ] CodeMirror's Ctrl+F shortcut only works when a node is selected in the active document. This leads to a frustrating...
Sometimes there are duplicate nodes in the info tree. For example, [`tinyxml2::DynArray::Push`](https://codecompass.net/demo/#wsid=TinyXML2&fid=203832585766346198&select=226|5|231|6¢er=text) has the following code: ```cpp void Push( T t ) { TIXMLASSERT( _size < INT_MAX ); EnsureCapacity( _size+1...