diff options
| author | Douglas Gregor <dgregor@apple.com> | 2012-06-08 00:16:27 +0000 |
|---|---|---|
| committer | Douglas Gregor <dgregor@apple.com> | 2012-06-08 00:16:27 +0000 |
| commit | aadbfafcd11bed5a6b865e0eacb02977d127adc1 (patch) | |
| tree | 040e080acd058fc50170fda4775f6263817817bc | |
| parent | 392357eea00ad1a80e5ee4bbf29bf3068858c1d7 (diff) | |
| download | bcm5719-llvm-aadbfafcd11bed5a6b865e0eacb02977d127adc1.tar.gz bcm5719-llvm-aadbfafcd11bed5a6b865e0eacb02977d127adc1.zip | |
Fix typo "CursorKind.CONDITONAL_OPERATOR" in Python bindings, from
Manish Verma!
llvm-svn: 158182
| -rw-r--r-- | clang/bindings/python/clang/cindex.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/bindings/python/clang/cindex.py b/clang/bindings/python/clang/cindex.py index c599faa9fb6..257b7aeb19f 100644 --- a/clang/bindings/python/clang/cindex.py +++ b/clang/bindings/python/clang/cindex.py @@ -677,7 +677,7 @@ CursorKind.BINARY_OPERATOR = CursorKind(114) CursorKind.COMPOUND_ASSIGNMENT_OPERATOR = CursorKind(115) # The ?: ternary operator. -CursorKind.CONDITONAL_OPERATOR = CursorKind(116) +CursorKind.CONDITIONAL_OPERATOR = CursorKind(116) # An explicit cast in C (C99 6.5.4) or a C-style cast in C++ # (C++ [expr.cast]), which uses the syntax (Type)expr. |

