Skip to content

Commit

Permalink
code review fix for tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
nohayassin committed Mar 22, 2020
1 parent f8fac2c commit b2484f7
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions tools/fw-logger/string-formatter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,12 @@ namespace fw_logger

exp_replace_map[regular_exp[1]] = replacement[1];


st_regular_exp[2] << "\\{\\b(" << i << "):f\\}";
regular_exp[2] = st_regular_exp[2].str();
st_replacement[2] << static_cast<float_t>(params[i]);
replacement[2] = st_replacement[2].str();
exp_replace_map[regular_exp[2]] = replacement[2];

st_regular_exp[2] << "\\{\\b(" << i << "):f\\}";
regular_exp[2] = st_regular_exp[2].str();
st_replacement[2] << static_cast<float_t>(params[i]);
replacement[2] = st_replacement[2].str();
exp_replace_map[regular_exp[2]] = replacement[2];


st_regular_exp[3] << "\\{\\b(" << i << "),[a-zA-Z]+\\}";
regular_exp[3] = st_regular_exp[3].str();
Expand Down

1 comment on commit b2484f7

@nohayassin
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tracked on: RS5-7008

Please sign in to comment.