Boris Staletic
Boris Staletic
I guess this is a duplicate of #91, but unfortunately links in that issue are now wrong - azure removed the old logs. The regex that I had tried was...
Strangly enough `static volatile * int f` works.
Line 1423 in loguru.hpp should have `|| !defined(__GLIBC__)`. Since `execinfo.h` is a glibc extension that is needed for stack traces, checking for glibc makes thte most sense. `__GLIBC__` is defined...
Documentation wording is a little confusing. The documentation makes a distinction between packages and plugins. One package can contain multiple plugins. One example where this is useful is perhaps separating...
By default cquery reindexes in two cases. At the start and every time you save a file. @jacobdufault will correct me if I'm wrong, but I think cquery checks thte...
Cquery checks file modification times to determine if it needs to reindex those files.
This isn't too easy, but isn't too hard either. Here's how ycmd implemented it: https://github.com/Valloric/ycmd/pull/1031 Clang *can* compile cuda projects, but if the compilation database is made with nvcc, there's...
Yes, because it eliminates the known not working configuration. Someone still has to make sure cquery isn't doing anything stupid and write tests that prove that cuda works.
This is just a matter of supplying the correct flags to cquery. But before we can help you, how are you passing your flags to cqury?
This usually means that the flags you supplied to cquery aren't correct for your project, so clang fails to correctly instantiate `std::string`. This isn't so uncommon in template heavy code...