mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-02-10 18:05:41 +08:00
fixed shared_from_this()
This commit is contained in:
@ -15,7 +15,7 @@ enum Color
|
||||
BLACK = 1
|
||||
};
|
||||
|
||||
class IRBNode
|
||||
class IRBNode : public std::enable_shared_from_this<IRBNode>
|
||||
{
|
||||
public:
|
||||
virtual void setLeft(PIRBNode pNode) = 0;
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
namespace CFCPP
|
||||
{
|
||||
class DirectoryEntry : public IDirectoryEntry, protected std::enable_shared_from_this<DirectoryEntry>
|
||||
class DirectoryEntry : public IDirectoryEntry
|
||||
{
|
||||
public:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user