| Index: Source/wtf/text/TextPosition.h
|
| diff --git a/Source/wtf/text/TextPosition.h b/Source/wtf/text/TextPosition.h
|
| index 76fecf9fcaae73ef15102e499786e5054c5a126c..20765624bd5f05bd0d1058dd568ec8bf42055497 100644
|
| --- a/Source/wtf/text/TextPosition.h
|
| +++ b/Source/wtf/text/TextPosition.h
|
| @@ -68,6 +68,7 @@ public:
|
| TextPosition() { }
|
| bool operator==(const TextPosition& other) { return m_line == other.m_line && m_column == other.m_column; }
|
| bool operator!=(const TextPosition& other) { return !((*this) == other); }
|
| + OrdinalNumber toOffsetPosition(const Vector<unsigned>&);
|
|
|
| // A 'minimum' value of position, used as a default value.
|
| static TextPosition minimumPosition() { return TextPosition(OrdinalNumber::first(), OrdinalNumber::first()); }
|
|
|