[cfe-commits] r158182 - /cfe/trunk/bindings/python/clang/cindex.py

Douglas Gregor dgregor at apple.com
Thu Jun 7 17:16:27 PDT 2012


Author: dgregor
Date: Thu Jun  7 19:16:27 2012
New Revision: 158182

URL: http://llvm.org/viewvc/llvm-project?rev=158182&view=rev
Log:
Fix typo "CursorKind.CONDITONAL_OPERATOR" in Python bindings, from
Manish Verma!

Modified:
    cfe/trunk/bindings/python/clang/cindex.py

Modified: cfe/trunk/bindings/python/clang/cindex.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/bindings/python/clang/cindex.py?rev=158182&r1=158181&r2=158182&view=diff
==============================================================================
--- cfe/trunk/bindings/python/clang/cindex.py (original)
+++ cfe/trunk/bindings/python/clang/cindex.py Thu Jun  7 19:16:27 2012
@@ -677,7 +677,7 @@
 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.





More information about the cfe-commits mailing list