diff options
author | George Hazan <ghazan@miranda.im> | 2018-04-18 22:35:42 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-04-18 22:35:42 +0300 |
commit | 9ffe3c7ba4eb7011279e14ff1c5b5357bf874114 (patch) | |
tree | 968ffd05d61f7dbbde9f640a7fc7ec4e8348d7da /plugins/UserInfoEx | |
parent | 9cf1444eb7888f2d942d220f938aa893396a8a1b (diff) |
warning fix
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r-- | plugins/UserInfoEx/src/ex_import/tinyxml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/ex_import/tinyxml.h b/plugins/UserInfoEx/src/ex_import/tinyxml.h index dc9087cc8c..bf3732a862 100644 --- a/plugins/UserInfoEx/src/ex_import/tinyxml.h +++ b/plugins/UserInfoEx/src/ex_import/tinyxml.h @@ -389,7 +389,7 @@ private: in a document, or stand on its own. The type of a TiXmlNode can be queried, and it can be cast to its more defined type. */ -class TiXmlNode : public TiXmlBase, private MNonCopyable +class TiXmlNode : public TiXmlBase { friend class TiXmlDocument; friend class TiXmlElement; @@ -692,7 +692,7 @@ protected: part of the tinyXML document object model. There are other suggested ways to look at this problem. */ -class TiXmlAttribute : public TiXmlBase, private MNonCopyable +class TiXmlAttribute : public TiXmlBase { friend class TiXmlAttributeSet; |