cutter icon indicating copy to clipboard operation
cutter copied to clipboard

core: fixed missing field initializers

Open tcoyvwac opened this issue 2 years ago • 0 comments

Your checklist for this pull request

Detailed description

  • When building the project from clean, compiler complains with:
    ./cutter/src/core/Cutter.cpp:845:45: warning: missing initializer for member ‘rz_str_stringify_opt_t::length’ [-Wmissing-field-initializers]
  845 |                 RzStrStringifyOpt opt = { 0 };
      |                                             ^                  
  • This PR fixes said complaint by filling in the missing fields for the variable opt of datatype RzStrStringifyOpt.

Test plan (required)

  • CI should pass and build with no problems.
    • Structurally, nothing has changed, only filled in missing data fields.

Closing issues

N/A


tcoyvwac avatar Apr 19 '22 22:04 tcoyvwac