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
..
exclude_dir
[tests] Create integration tests for clang translation logic
8 years ago
external
[tests] Create integration tests for clang translation logic
8 years ago
main.cpp
[clang] Translate everything coming from <X>.h files when translating <X>.cpp source
8 years ago
main.cpp.dot
[C++] Store class template name without its template arguments
8 years ago
main.h
[clang] Translate everything coming from <X>.h files when translating <X>.cpp source
8 years ago
main_default_root.cpp
[tests] Create integration tests for clang translation logic
8 years ago
main_default_root.cpp.dot
[C++] Store class template name without its template arguments
8 years ago
main_default_symlink.cpp
[tests] Create integration tests for clang translation logic
8 years ago
main_default_symlink.cpp.dot
[C++] Store class template name without its template arguments
8 years ago
main_symlink.cpp
[tests] Create integration tests for clang translation logic
8 years ago
main_symlink.cpp.dot
[C++] Store class template name without its template arguments
8 years ago
project_lib.h
[clang] Translate everything coming from <X>.h files when translating <X>.cpp source
8 years ago