Protect ChangeCompareStride from situations in which it is possible
[oota-llvm.git] / tools / llvmc2 / Action.h
index 0f3f0bd26b6d6a56a2bce5d6e087c435dff55ce9..c3b31d4e5589903588623eb4e80a07a0e52251e2 100644 (file)
@@ -1,4 +1,4 @@
-//===--- Tools.h - The LLVM Compiler Driver ---------------------*- C++ -*-===//
+//===--- Action.h - The LLVM Compiler Driver --------------------*- C++ -*-===//
 //
 //                     The LLVM Compiler Infrastructure
 //
@@ -19,7 +19,7 @@
 
 namespace llvmc {
 
-  typedef std::vector<std::string> StringVector;
+  typedef std::vector<std::string> StrVector;
 
   /// Action - A class that encapsulates a single shell command.
   class Action {
@@ -29,8 +29,7 @@ namespace llvmc {
     std::vector<std::string> Args_;
   public:
     Action() {}
-    Action (const std::string& C,
-            const StringVector& A)
+    Action (const std::string& C, const StrVector& A)
       : Command_(C), Args_(A)
     {}