aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/StringRef.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/ADT/StringRef.h')
-rw-r--r--include/llvm/ADT/StringRef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/StringRef.h b/include/llvm/ADT/StringRef.h
index 68d2def..1d7a9b6 100644
--- a/include/llvm/ADT/StringRef.h
+++ b/include/llvm/ADT/StringRef.h
@@ -26,7 +26,7 @@ namespace llvm {
class StringRef {
public:
typedef const char *iterator;
- static const size_t npos = std::string::npos;
+ static const size_t npos = ~size_t(0);
private:
/// The start of the string, in an external buffer.