summaryrefslogtreecommitdiff
path: root/include/xmlreader/xmlreader.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/xmlreader/xmlreader.hxx')
-rw-r--r--include/xmlreader/xmlreader.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmlreader/xmlreader.hxx b/include/xmlreader/xmlreader.hxx
index c25c456c8983..364590b05243 100644
--- a/include/xmlreader/xmlreader.hxx
+++ b/include/xmlreader/xmlreader.hxx
@@ -129,9 +129,9 @@ private:
enum class State { Content, StartTag, EndTag, EmptyElementTag, Done };
- SAL_DLLPRIVATE inline char read() { return pos_ == end_ ? '\0' : *pos_++; }
+ SAL_DLLPRIVATE char read() { return pos_ == end_ ? '\0' : *pos_++; }
- SAL_DLLPRIVATE inline char peek() { return pos_ == end_ ? '\0' : *pos_; }
+ SAL_DLLPRIVATE char peek() { return pos_ == end_ ? '\0' : *pos_; }
SAL_DLLPRIVATE void normalizeLineEnds(Span const & text);