Skip to content

Commit fda73b8

Browse files
authored
Remove unnecessary comment
1 parent 95bbe2a commit fda73b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • BloomFramework/include/Components

BloomFramework/include/Components/Size.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace bloom::components {
44
struct Size {
5-
Size() : w(0), h(0) {} // or -1?
5+
Size() : w(0), h(0) {}
66
Size(int w, int h) : w(w), h(h) {}
77

88
int w, h;
99
};
10-
}
10+
}

0 commit comments

Comments
 (0)