X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=blobdiff_plain;f=include%2Fllvm%2FADT%2FStringRef.h;h=350032b8c4e774f96c509e1b77d681ba24b34c54;hp=bc80946a9ea1bfa4700e83007213ad67e9d4914c;hb=56fa307e514c4a792a821595c4fdb48d8b591fc5;hpb=3dba3be8e521318a6d3000baaf1ce9c458c915f6 diff --git a/include/llvm/ADT/StringRef.h b/include/llvm/ADT/StringRef.h index bc80946a9ea..350032b8c4e 100644 --- a/include/llvm/ADT/StringRef.h +++ b/include/llvm/ADT/StringRef.h @@ -65,11 +65,9 @@ namespace llvm { /// @{ /// Construct an empty string ref. - LLVM_ATTRIBUTE_ALWAYS_INLINE /*implicit*/ StringRef() : Data(nullptr), Length(0) {} /// Construct a string ref from a cstring. - LLVM_ATTRIBUTE_ALWAYS_INLINE /*implicit*/ StringRef(const char *Str) : Data(Str) { assert(Str && "StringRef cannot be built from a NULL argument");