[libc][NFC] Mark a constructor of StringView to be constexpr.

GitOrigin-RevId: 89e5c20ca97838bf8efbb8c0e114dda1b8037b7d
diff --git a/src/__support/CPP/StringView.h b/src/__support/CPP/StringView.h
index a82cec4..2969bc7 100644
--- a/src/__support/CPP/StringView.h
+++ b/src/__support/CPP/StringView.h
@@ -56,7 +56,7 @@
 
   // Ctor for raw literal.
   template <size_t N>
-  StringView(const char (&Str)[N]) : StringView(Str, N - 1) {}
+  constexpr StringView(const char (&Str)[N]) : StringView(Str, N - 1) {}
 
   constexpr const char *data() const { return Data; }