Xcode 4.3 compatibility checkin

The Xcode 4.3 compiler shows the method CreateArrayRSSetObject is unused and,
due to -Werror being specified as a compilation option, the compilation fails.

This patch comments out the method and has also been tested on an Ubuntu
10.04 build as well as Xcode 4.3 and neither generated compilation issues
which indicates the method isn't needed.

Signed-off-by: Al Sutton <al@funkyandroid.com>
diff --git a/slang_rs_object_ref_count.cpp b/slang_rs_object_ref_count.cpp
index f4ce728..4693fd9 100644
--- a/slang_rs_object_ref_count.cpp
+++ b/slang_rs_object_ref_count.cpp
@@ -831,7 +831,7 @@
                                             clang::SourceLocation StartLoc,
                                             clang::SourceLocation Loc);
 
-static clang::Stmt *CreateArrayRSSetObject(clang::ASTContext &C,
+/*static clang::Stmt *CreateArrayRSSetObject(clang::ASTContext &C,
                                            clang::Expr *DstArr,
                                            clang::Expr *SrcArr,
                                            clang::SourceLocation StartLoc,
@@ -987,7 +987,7 @@
       new(C) clang::CompoundStmt(C, StmtArray, StmtCtr, Loc, Loc);
 
   return CS;
-}
+} */
 
 static clang::Stmt *CreateStructRSSetObject(clang::ASTContext &C,
                                             clang::Expr *LHS,