diff --git a/include/llvm/ADT/StringRef.h b/include/llvm/ADT/StringRef.h index 75ebaf54881..364ace7e1d0 100644 --- a/include/llvm/ADT/StringRef.h +++ b/include/llvm/ADT/StringRef.h @@ -437,6 +437,10 @@ namespace llvm { /// @} + // StringRefs can be treated like a POD type. + template struct isPodLike; + template <> struct isPodLike { static const bool value = true; }; + } #endif