Skip to content

Commit 1da7753

Browse files
fix(ofParameter): size_t to resolve conversion warning (#8360)
Co-authored-by: alexandre burton <[email protected]>
1 parent b33d856 commit 1da7753

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/openFrameworks/types/ofParameter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ class ofParameterGroup : public ofAbstractParameter {
195195
}
196196

197197
void reInit() {
198-
for (int i = 0; i < size(); i++) {
198+
for (std::size_t i = 0; i < size(); i++) {
199199
get(i).reInit();
200200
}
201201
}

0 commit comments

Comments
 (0)