Skip to content

Commit

Permalink
Remove extraneous ; in libmei header [skip-ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
lpugin committed Sep 18, 2024
1 parent 185af4c commit 3d63219
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions libmei/dist/attmodule.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class AttModule {
public:
/** @name Constructors and destructor */
///@{
AttModule(){};
virtual ~AttModule(){};
AttModule() {}
virtual ~AttModule() {}
///@}

/**
Expand Down
4 changes: 2 additions & 2 deletions libmei/tools/cpp.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,8 +461,8 @@ class AttModule {{
public:
/** @name Constructors and destructor */
///@{{
AttModule(){{}};
virtual ~AttModule(){{}};
AttModule() {{}}
virtual ~AttModule() {{}}
///@}}
/**
Expand Down

0 comments on commit 3d63219

Please sign in to comment.