Skip to content

Commit

Permalink
Update ui-field.types.cpp to remove uint
Browse files Browse the repository at this point in the history
  • Loading branch information
KaruroChori authored Dec 4, 2024
1 parent dcdbe58 commit a0d7384
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui-field.types.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ namespace field_types{


//TODO: I need to check if number conversions failed or not too.
bool h_px(uint T, size_t* dst, const char* expr, const ui_base* env){
bool h_px(unsigned int T, size_t* dst, const char* expr, const ui_base* env){
if (T==1){
dst[0]=std::stoi(expr);
return true;
Expand Down Expand Up @@ -182,4 +182,4 @@ namespace field_types{

}

}
}

0 comments on commit a0d7384

Please sign in to comment.