diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-30 22:58:31 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-31 09:04:13 +0200 |
commit | e3898d3714390803ca17d4fc310be8e12c6c4e06 (patch) | |
tree | 8bce3e572dc9cd83962b530df11abfb1af62b017 /autodoc/inc | |
parent | a267f31842bad2f33b033df72e83aa7aba0f8177 (diff) |
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: If07500e1b7dc0ac127450fbb61e3d569ac3727eb
Diffstat (limited to 'autodoc/inc')
-rw-r--r-- | autodoc/inc/ary_i/d_token.hxx | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/autodoc/inc/ary_i/d_token.hxx b/autodoc/inc/ary_i/d_token.hxx index d3d3d1f75237..e04c6bf58217 100644 --- a/autodoc/inc/ary_i/d_token.hxx +++ b/autodoc/inc/ary_i/d_token.hxx @@ -91,20 +91,7 @@ class DT_White : public DT_Dsapi virtual bool IsWhiteOnly() const; }; - -class DT_MLTag : public DT_Dsapi -{ - public: - enum E_Kind - { - k_unknown = 0, - k_begin, - k_end, - k_single - }; -}; - -class DT_MupType : public DT_MLTag +class DT_MupType : public DT_Dsapi { public: explicit DT_MupType() /// Constructor for End-Tag @@ -125,7 +112,7 @@ class DT_MupType : public DT_MLTag bool bIsBegin; }; -class DT_MupMember : public DT_MLTag +class DT_MupMember : public DT_Dsapi { public: explicit DT_MupMember() /// Constructor for End-Tag @@ -164,7 +151,7 @@ class DT_MupConst : public DT_Dsapi }; -class DT_Style : public DT_MLTag +class DT_Style : public DT_Dsapi { public: DT_Style( @@ -181,7 +168,6 @@ class DT_Style : public DT_MLTag { return bNewLine; } private: String sText; /// With HTML. - E_Kind eKind; bool bNewLine; }; |