[Gdcm-hackers] gdcm-git:Grassroots DICOM branch master updated. f7a0837ac4888dac248052cbf4a34994651
Cross-platform DICOM implementation
Brought to you by:
malat
|
From: malat <ma...@us...> - 2023-04-04 08:20:06
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Grassroots DICOM".
The branch, master has been updated
via f7a0837ac4888dac248052cbf4a3499465123605 (commit)
from df5392153f36d717396efc4f3ac0292187fe8d77 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://sourceforge.net/p/gdcm/gdcm/ci/f7a0837ac4888dac248052cbf4a3499465123605/
commit f7a0837ac4888dac248052cbf4a3499465123605
Author: Sean McBride <se...@ro...>
Date: Fri Mar 24 18:19:13 2023 -0400
Fixed most clang -Wextra-semi warnings
diff --git a/Source/Common/gdcmDataEvent.h b/Source/Common/gdcmDataEvent.h
index d668a8cc6..87afd1ceb 100644
--- a/Source/Common/gdcmDataEvent.h
+++ b/Source/Common/gdcmDataEvent.h
@@ -29,7 +29,7 @@ public:
typedef AnyEvent Superclass;
DataEvent(const char *bytes = nullptr, size_t len = 0):Bytes(bytes),Length(len) {}
~DataEvent() override = default;
- DataEvent(const Self&s) : AnyEvent(s), Bytes(0), Length(0) {};
+ DataEvent(const Self&s) : AnyEvent(s), Bytes(0), Length(0) {}
void operator=(const Self&) = delete;
const char * GetEventName() const override { return "DataEvent"; }
diff --git a/Source/Common/gdcmProgressEvent.h b/Source/Common/gdcmProgressEvent.h
index b686241bf..cecbaccfd 100644
--- a/Source/Common/gdcmProgressEvent.h
+++ b/Source/Common/gdcmProgressEvent.h
@@ -34,7 +34,7 @@ public:
ProgressEvent(double p = 0):m_Progress(p) {}
~ProgressEvent() override = default;
- ProgressEvent(const Self&s) : AnyEvent(s), m_Progress(0.0) {};
+ ProgressEvent(const Self&s) : AnyEvent(s), m_Progress(0.0) {}
void operator=(const Self&) = delete;
const char * GetEventName() const override { return "ProgressEvent"; }
-----------------------------------------------------------------------
Summary of changes:
Source/Common/gdcmDataEvent.h | 2 +-
Source/Common/gdcmProgressEvent.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
Grassroots DICOM
|