[libc][obvious] Remove the unused file utils/CPP/StringRef.h.

GitOrigin-RevId: 578ac8bfa5e9595f7f4c40dc75e3925d28d91c78
diff --git a/utils/CPP/CMakeLists.txt b/utils/CPP/CMakeLists.txt
index 60975fe..e321150 100644
--- a/utils/CPP/CMakeLists.txt
+++ b/utils/CPP/CMakeLists.txt
@@ -5,6 +5,5 @@
     ArrayRef.h
     Bitset.h
     Functional.h
-    StringRef.h
     TypeTraits.h
 )
diff --git a/utils/CPP/StringRef.h b/utils/CPP/StringRef.h
deleted file mode 100644
index 5ac6925..0000000
--- a/utils/CPP/StringRef.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//===-- A standalone StringRef type -----------------------------*- C++ -*-===//
-//
-// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
-// See https://llvm.org/LICENSE.txt for license information.
-// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
-//
-//===----------------------------------------------------------------------===//
-
-#ifndef LLVM_LIBC_UTILS_CPP_STRINGREF_H
-#define LLVM_LIBC_UTILS_CPP_STRINGREF_H
-
-#include "ArrayRef.h"
-
-namespace __llvm_libc {
-namespace cpp {
-
-class StringRef : public ArrayRef<char> {
-  // More methods like those in llvm::StringRef can be added as needed.
-};
-
-} // namespace cpp
-} // namespace __llvm_libc
-
-#endif // LLVM_LIBC_UTILS_CPP_STRINGREF_H