diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-18 08:58:51 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2019-05-18 08:58:51 (GMT) |
commit | de1cb37e6874a46c9882a6dc022942f24fb4ef16 (patch) | |
tree | e33bd27f81a3f61608b748cbec47e5b59e8fa032 /addon | |
parent | bfd35110cc752ab3c51929b59ea829068a5a395b (diff) | |
download | Doxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.zip Doxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.tar.gz Doxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.tar.bz2 |
Fixed issue in doxmlparser in getter function
Diffstat (limited to 'addon')
-rw-r--r-- | addon/doxmlparser/src/compoundhandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<IncludeHandler> virtual const IString * refId() const { return &m_refId; } virtual bool isLocal() const - { return &m_isLocal; } + { return m_isLocal; } private: IBaseHandler *m_parent; |