aboutsummaryrefslogtreecommitdiff
path: root/test/CodeCompletion/Inputs
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-07-14 17:44:04 +0000
committerDouglas Gregor <dgregor@apple.com>2010-07-14 17:44:04 +0000
commit797efb51ce0825eb4cce2864a5cea2b30e85f06c (patch)
tree0017d10695044bc98dad73dc0d4511d2b3fb3780 /test/CodeCompletion/Inputs
parent9ccd7251047d5177c2ef5f5dfea324d47c5d18f3 (diff)
Only filter out names reserved for the implementation (e.g., __blah or
_Foo) from code-completion results when they come from a system header. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@108338 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeCompletion/Inputs')
-rw-r--r--test/CodeCompletion/Inputs/reserved.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/CodeCompletion/Inputs/reserved.h b/test/CodeCompletion/Inputs/reserved.h
new file mode 100644
index 0000000000..fafe4ac440
--- /dev/null
+++ b/test/CodeCompletion/Inputs/reserved.h
@@ -0,0 +1,2 @@
+typedef int _INTEGER_TYPE;
+typedef float FLOATING_TYPE;