Skip to content

Commit 9b24ada

Browse files
committed
Fix warnings
1 parent b92850f commit 9b24ada

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/xtd.core/include/xtd/time_span.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace xtd {
2626
/// @par Examples
2727
/// The following example instantiates a The following example instantiates a xtd::time_span object that represents the difference between two dates. It then displays the xtd::time_span object's properties. object that represents the difference between two dates. It then displays the xtd::time_span object's properties.
2828
/// @include time_span.cpp
29-
class time_span : public xtd::object, xtd::iequatable<time_span>, public icomparable<time_span>, public iformatable {
29+
class time_span : public xtd::object, public xtd::iequatable<time_span>, public icomparable<time_span>, public iformatable {
3030
public:
3131
/// @name Public Fields
3232

src/xtd.drawing/src/xtd/drawing/imaging/frame_dimension.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ using namespace xtd::drawing::imaging;
77
frame_dimension::frame_dimension(const xtd::guid& guid) noexcept : guid_(guid) {
88
}
99

10-
const struct guid& frame_dimension::guid() const noexcept {
10+
const class guid& frame_dimension::guid() const noexcept {
1111
return guid_;
1212
}
1313

src/xtd.drawing/src/xtd/drawing/imaging/image_format.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ using namespace xtd;
44
using namespace xtd::drawing;
55
using namespace xtd::drawing::imaging;
66

7-
image_format::image_format(const struct guid& guid) noexcept : guid_(guid) {
7+
image_format::image_format(const class guid& guid) noexcept : guid_(guid) {
88
}
99

10-
const struct guid image_format::guid() const noexcept {
10+
const class guid image_format::guid() const noexcept {
1111
return guid_;
1212
}
1313

0 commit comments

Comments
 (0)