[cfe-commits] r45713 - /cfe/trunk/include/clang/AST/ASTContext.h
Fariborz Jahanian
fjahanian at apple.com
Mon Jan 7 11:13:39 PST 2008
Author: fjahanian
Date: Mon Jan 7 13:13:39 2008
New Revision: 45713
URL: http://llvm.org/viewvc/llvm-project?rev=45713&view=rev
Log:
Make interfaceTypesAreCompatible a private method.
Modified:
cfe/trunk/include/clang/AST/ASTContext.h
Modified: cfe/trunk/include/clang/AST/ASTContext.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/ASTContext.h?rev=45713&r1=45712&r2=45713&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/ASTContext.h (original)
+++ cfe/trunk/include/clang/AST/ASTContext.h Mon Jan 7 13:13:39 2008
@@ -294,8 +294,6 @@
bool builtinTypesAreCompatible(QualType, QualType);
bool vectorTypesAreCompatible(QualType, QualType);
- /// Objective-C specific type checking.
- bool interfaceTypesAreCompatible(QualType, QualType);
bool QualifiedInterfaceTypesAreCompatible(QualType, QualType);
bool ObjcQualifiedIdTypesAreCompatible(QualType, QualType, bool = false);
bool objcTypesAreCompatible(QualType, QualType);
@@ -320,6 +318,9 @@
void InitBuiltinTypes();
void InitBuiltinType(QualType &R, BuiltinType::Kind K);
+
+ /// helper function for Objective-C specific type checking.
+ bool interfaceTypesAreCompatible(QualType, QualType);
//===--------------------------------------------------------------------===//
// Serialization
More information about the cfe-commits
mailing list