You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andrzej Kotulski
c1147710ba
[C++] Store class template name without its template arguments
...
Summary:
Don't store redundant information in C++ template Type.Name.t.
New signature:
```
| CppClass (qual_name, template_args)
```
For example, for `std::shared_ptr<int>`, will look like this:
```
| CppClass (["std", "shared_ptr"], Template [int])
```
While it used to be:
```
| CppClass (["std", "shared_ptr<int>"], Template (["std", "shared_ptr"], [int]))
```
Reviewed By: jberdine, mbouaziz
Differential Revision: D4834512
fbshipit-source-id: cb1c570
8 years ago
..
clang_compilation_database
[buck-db] add flavour more robustly
8 years ago
clang_translation
[C++] Store class template name without its template arguments
8 years ago
cmake
[DB] return resolved path when path cannot be made relative
8 years ago
componentkit
[componentkit] Compute Cyclomatic Complexity
8 years ago
linters
[linters] Fix perf problem in the linters, added tests
8 years ago
make
[tests] awesomize make output
8 years ago
mvn
[infer][PR] [mvn] Handle recursive modules
8 years ago
ndk-build/ hello_app
ndk-build integration test
9 years ago
path_with_spaces
[clangdb] support relative paths in compilation databases
8 years ago
xcodebuild/ simple_app
[ios] Fix xcodebuild integration with xcpretty, add test.
8 years ago
.buckconfig
[buck-db] add flavour more robustly
8 years ago
example.S
Add basic integration test for assembly code
8 years ago
hello.c
[DB] Use realpath when calling source_file_from_abs_path
8 years ago
hello.unknown_ext
[DB] Use realpath when calling source_file_from_abs_path
8 years ago
hello2.c
support `clang -c file1.c file2.c`
9 years ago
hello3.c
Unbreak --continue option by passing it down to the python files
8 years ago
preprocessed.c
[DB] Don't fail hard when realpath fails
8 years ago