[Lldb-commits] [lldb] Fix MSVC build issues (PR #84362)

Saleem Abdulrasool via lldb-commits lldb-commits at lists.llvm.org
Thu Mar 7 14:15:54 PST 2024


================
@@ -168,8 +168,8 @@ class ConstString {
   // Implicitly convert \class ConstString instances to \class StringRef.
   operator llvm::StringRef() const { return GetStringRef(); }
 
-  // Implicitly convert \class ConstString instances to \class std::string_view.
-  operator std::string_view() const {
+  // Explicitly convert \class ConstString instances to \class std::string_view.
+  explicit operator std::string_view() const {
----------------
compnerd wrote:

:(

https://github.com/llvm/llvm-project/pull/84362


More information about the lldb-commits mailing list