From de1cb37e6874a46c9882a6dc022942f24fb4ef16 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Sat, 18 May 2019 10:58:51 +0200 Subject: Fixed issue in doxmlparser in getter function --- addon/doxmlparser/src/compoundhandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/doxmlparser/src/compoundhandler.h b/addon/doxmlparser/src/compoundhandler.h index f669133..b05ba3d 100644 --- a/addon/doxmlparser/src/compoundhandler.h +++ b/addon/doxmlparser/src/compoundhandler.h @@ -51,7 +51,7 @@ class IncludeHandler : public IInclude, public BaseHandler virtual const IString * refId() const { return &m_refId; } virtual bool isLocal() const - { return &m_isLocal; } + { return m_isLocal; } private: IBaseHandler *m_parent; -- cgit v0.12