Skip to content

Commit

Permalink
code quality
Browse files Browse the repository at this point in the history
  • Loading branch information
kosloot committed Oct 21, 2023
1 parent d03d152 commit ae8fffc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/libfolia/folia_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -576,10 +576,10 @@ namespace folia {
friend void destroy( FoliaElement * );
private:
//Constructor
AbstractElement( const AbstractElement& ); // inhibit copies
AbstractElement& operator=( const AbstractElement& ); // inhibit copies
AbstractElement( const AbstractElement& ) = delete; // inhibit copies
AbstractElement& operator=( const AbstractElement& ) = delete; // inhibit copies
protected:
AbstractElement( const properties& p, Document* = 0 );
explicit AbstractElement( const properties& p, Document* = 0 );
AbstractElement( const properties& p, FoliaElement * );
virtual ~AbstractElement();
public:
Expand Down

0 comments on commit ae8fffc

Please sign in to comment.