Popular repositories Loading
-
llvm-project
llvm-project PublicForked from llvm/llvm-project
This is the canonical git mirror of the LLVM subversion repository. Please see http://llvm.org/ for instructions on contributing to LLVM.
LLVM 4
-
vscode-clangd
vscode-clangd PublicForked from clangd/vscode-clangd
Visual Studio Code extension for clangd
TypeScript 1
-
wxWidgets
wxWidgets PublicForked from wxWidgets/wxWidgets
Cross-Platform GUI Library - Report issues here: http://trac.wxwidgets.org/
C++
-
gmail-delay-send
gmail-delay-send PublicAutomatically exported from code.google.com/p/gmail-delay-send
JavaScript
-
RustDT
RustDT PublicForked from RustDT/RustDT
RustDT is an Eclipse based IDE for the Rust programming language:
Java
-
372 contributions in the last year
Day of Week | June Jun | July Jul | August Aug | September Sep | October Oct | November Nov | December Dec | January Jan | February Feb | March Mar | April Apr | May May | |||||||||||||||||||||||||||||||||||||||||
Sunday Sun | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Monday Mon | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Tuesday Tue | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Wednesday Wed | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Thursday Thu | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Friday Fri | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Saturday Sat |
Contribution activity
May 2025
Created 3 commits in 1 repository
Created a pull request in llvm/llvm-project that received 4 comments
[clang][AST] Pass ProfileArguments by value in findSpecialization{Impl,Locally}
The arguments passed are lightweight (an ArrayRef and a pointer), and findSpecializationImpl passes them to multiple functions, making it a potenti…
Opened 2 other pull requests in 1 repository
llvm/llvm-project
1
open
1
merged
-
[clangd] Drop the optimization where only shards for modified files are updated in the background index
This contribution was made on May 20
-
[clang][Index] Add comment about out-of-line defaulted destructor
This contribution was made on May 6
Reviewed 12 pull requests in 3 repositories
llvm/llvm-project
8 pull requests
-
[clangd] Add support for textDocument/rangesFormatting
This contribution was made on May 26
-
Follow style configuration in clangd when inserting missing includes
This contribution was made on May 26
-
[clangd] Add support for textDocument/rangesFormatting
This contribution was made on May 23
-
[clangd] Add support for textDocument/rangesFormatting (LSP 3.18)
This contribution was made on May 13
-
[clangd] Add CodePatterns config option under Completion
This contribution was made on May 12
-
allow implicit completion inside empty template argument list
This contribution was made on May 12
-
[clang][Index] Use HeuristicResolver in libIndex
This contribution was made on May 6
-
[clangd] Store documentation when indexing standard library
This contribution was made on May 5
clangd/vscode-clangd
3 pull requests
-
Release 0.1.35
This contribution was made on May 26
-
Disable clangd on untrusted workspaces
This contribution was made on May 23
-
[#300] Re-enable the functionality of file watcher
This contribution was made on May 17
llvm/clangd-www
1 pull request
-
Document CodePatterns config option
This contribution was made on May 14
Created an issue in llvm/llvm-project that received 5 comments
[clang][20.x regression] Crash during code completion when using PCH
Given the following files:
test.h
:
#pragma once
class provider_t
{ public: template<class T> void emit(T *data) {}
};
test.cpp
:
#include "test.h" void