Use renamed CommonOptionsParser member functions
    
GetCompilations() and GetSourcePathLists() were renamed to match LLVM style.

Reviewed By: Alexander Kornienko

llvm-svn: 170230
diff --git a/clang-tools-extra/cpp11-migrate/Cpp11Migrate.cpp b/clang-tools-extra/cpp11-migrate/Cpp11Migrate.cpp
index 0e72046..fe1eda9 100644
--- a/clang-tools-extra/cpp11-migrate/Cpp11Migrate.cpp
+++ b/clang-tools-extra/cpp11-migrate/Cpp11Migrate.cpp
@@ -42,8 +42,8 @@
   CommonOptionsParser OptionsParser(argc, argv);
 
   // TODO: Create transforms requested by command-line.
-  ClangTool SyntaxTool(OptionsParser.GetCompilations(),
-                       OptionsParser.GetSourcePathList());
+  ClangTool SyntaxTool(OptionsParser.getCompilations(),
+                       OptionsParser.getSourcePathList());
 
   // First, let's check to make sure there were no errors.
   if (SyntaxTool.run(newFrontendActionFactory<clang::SyntaxOnlyAction>()) !=