diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
|---|---|---|
| committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2018-06-19 13:55:58 +0000 |
| commit | 884fe02952017ac219cd23f9407d27ed4d8a8620 (patch) | |
| tree | a86d66e240ae1e72007ba75b23757c71d5a9a28c /src/livarot/BitLigne.cpp | |
| parent | Run clang-tidy’s modernize-use-emplace pass. (diff) | |
| download | inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.tar.gz inkscape-884fe02952017ac219cd23f9407d27ed4d8a8620.zip | |
Run clang-tidy’s modernize-redundant-void-arg pass.
Diffstat (limited to 'src/livarot/BitLigne.cpp')
| -rw-r--r-- | src/livarot/BitLigne.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/livarot/BitLigne.cpp b/src/livarot/BitLigne.cpp index e868d6374..53ab06c1d 100644 --- a/src/livarot/BitLigne.cpp +++ b/src/livarot/BitLigne.cpp @@ -39,13 +39,13 @@ BitLigne::BitLigne(int ist,int ien,float iScale) curMin=en; curMax=st; } -BitLigne::~BitLigne(void) +BitLigne::~BitLigne() { g_free(fullB); g_free(partB); } -void BitLigne::Reset(void) +void BitLigne::Reset() { curMin=en; curMax=st+1; @@ -167,7 +167,7 @@ int BitLigne::AddBord(float spos,float epos,bool full) } -void BitLigne::Affiche(void) +void BitLigne::Affiche() { for (int i=0;i<nbInt;i++) printf(" %.8x",fullB[i]); printf("\n"); |
