mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 09:17:57 +00:00
Use LeakChecked throughout Beast
This commit is contained in:
@@ -67,7 +67,7 @@ class InputSource;
|
||||
|
||||
@see XmlElement
|
||||
*/
|
||||
class BEAST_API XmlDocument
|
||||
class BEAST_API XmlDocument : LeakChecked <XmlDocument>, Uncopyable
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
@@ -173,8 +173,6 @@ private:
|
||||
String expandEntity (const String& entity);
|
||||
String expandExternalEntity (const String& entity);
|
||||
String getParameterEntity (const String& entity);
|
||||
|
||||
BEAST_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (XmlDocument)
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@
|
||||
|
||||
@see XmlDocument
|
||||
*/
|
||||
class BEAST_API XmlElement
|
||||
class BEAST_API XmlElement : LeakChecked <XmlElement>
|
||||
{
|
||||
public:
|
||||
//==============================================================================
|
||||
@@ -726,8 +726,6 @@ private:
|
||||
void writeElementAsText (OutputStream&, int indentationLevel, int lineWrapLength) const;
|
||||
void getChildElementsAsArray (XmlElement**) const noexcept;
|
||||
void reorderChildElements (XmlElement**, int) noexcept;
|
||||
|
||||
BEAST_LEAK_DETECTOR (XmlElement)
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user