This website requires JavaScript.
Explore
Help
Sign In
maxjhandsome
/
llvm-project
forked from
OSchip/llvm-project
Watch
1
Star
0
Fork
You've already forked llvm-project
0
Code
Issues
Pull Requests
Packages
Releases
Wiki
Activity
8445cbd1ca
llvm-project
/
clang
/
test
/
CodeCompletion
/
Inputs
/
reserved.h
5 lines
86 B
C
Raw
Normal View
History
Unescape
Escape
[CodeCompletion] Allow system headers providing private symbols with a single underscore. rdar://24677150 llvm-svn: 274314
2016-07-01 09:17:02 +08:00
typedef
int
__INTEGER_TYPE
;
Only filter out names reserved for the implementation (e.g., __blah or _Foo) from code-completion results when they come from a system header. llvm-svn: 108338
2010-07-15 01:44:04 +08:00
typedef
float
FLOATING_TYPE
;
[CodeCompletion] Allow system headers providing private symbols with a single underscore. rdar://24677150 llvm-svn: 274314
2016-07-01 09:17:02 +08:00
typedef
int
_MyPrivateType
;