[llvm-commits] [llvm] r90230 - /llvm/trunk/include/llvm/ADT/StringSwitch.h

Gabor Greif ggreif at gmail.com
Tue Dec 1 04:53:57 PST 2009


Author: ggreif
Date: Tue Dec  1 06:53:56 2009
New Revision: 90230

URL: http://llvm.org/viewvc/llvm-project?rev=90230&view=rev
Log:
demonstrate usage of Cases() mapping several strings to the same value; remove trailing spaces

Modified:
    llvm/trunk/include/llvm/ADT/StringSwitch.h

Modified: llvm/trunk/include/llvm/ADT/StringSwitch.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/StringSwitch.h?rev=90230&r1=90229&r2=90230&view=diff

==============================================================================
--- llvm/trunk/include/llvm/ADT/StringSwitch.h (original)
+++ llvm/trunk/include/llvm/ADT/StringSwitch.h Tue Dec  1 06:53:56 2009
@@ -18,7 +18,7 @@
 #include <cstring>
 
 namespace llvm {
-  
+
 /// \brief A switch()-like statement whose cases are string literals.
 ///
 /// The StringSwitch class is a simple form of a switch() statement that
@@ -35,48 +35,48 @@
 ///   .Case("green", Green)
 ///   .Case("blue", Blue)
 ///   .Case("indigo", Indigo)
-///   .Case("violet", Violet)
+///   .Cases("violet", "purple", Violet)
 ///   .Default(UnknownColor);
 /// \endcode
 template<typename T>
 class StringSwitch {
   /// \brief The string we are matching.
   StringRef Str;
-  
+
   /// \brief The result of this switch statement, once known.
   T Result;
-  
+
   /// \brief Set true when the result of this switch is already known; in this
   /// case, Result is valid.
   bool ResultKnown;
-  
+
 public:
-  explicit StringSwitch(StringRef Str) 
+  explicit StringSwitch(StringRef Str)
   : Str(Str), ResultKnown(false) { }
-  
+
   template<unsigned N>
   StringSwitch& Case(const char (&S)[N], const T& Value) {
-    if (!ResultKnown && N-1 == Str.size() && 
+    if (!ResultKnown && N-1 == Str.size() &&
         (std::memcmp(S, Str.data(), N-1) == 0)) {
       Result = Value;
       ResultKnown = true;
     }
-    
+
     return *this;
   }
-  
+
   template<unsigned N0, unsigned N1>
   StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
                       const T& Value) {
     return Case(S0, Value).Case(S1, Value);
   }
-  
+
   template<unsigned N0, unsigned N1, unsigned N2>
   StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
                       const char (&S2)[N2], const T& Value) {
     return Case(S0, Value).Case(S1, Value).Case(S2, Value);
   }
-  
+
   template<unsigned N0, unsigned N1, unsigned N2, unsigned N3>
   StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
                       const char (&S2)[N2], const char (&S3)[N3],
@@ -87,18 +87,18 @@
   template<unsigned N0, unsigned N1, unsigned N2, unsigned N3, unsigned N4>
   StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
                       const char (&S2)[N2], const char (&S3)[N3],
-                       const char (&S4)[N4], const T& Value) {
+                      const char (&S4)[N4], const T& Value) {
     return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
       .Case(S4, Value);
   }
-  
+
   T Default(const T& Value) {
     if (ResultKnown)
       return Result;
-    
+
     return Value;
   }
-  
+
   operator T() {
     assert(ResultKnown && "Fell off the end of a string-switch");
     return Result;





More information about the llvm-commits mailing list