diff options
author | Bastian Bloessl <mail@bastibl.net> | 2019-08-27 18:24:39 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-09-05 13:14:21 +0200 |
commit | dc0028172a3b33e87684a06c81ddab3a9166f8f1 (patch) | |
tree | 712b3619cd4d43b1bbf3456133dff07100189498 | |
parent | 50aa0564e7f82f3c401ac5c64c30cfa0d6c3562e (diff) |
fec: do not use deprecated register specifier
-rw-r--r-- | gr-fec/lib/tpc_decoder.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/lib/tpc_decoder.cc b/gr-fec/lib/tpc_decoder.cc index b8a1e74e82..707442b1d7 100644 --- a/gr-fec/lib/tpc_decoder.cc +++ b/gr-fec/lib/tpc_decoder.cc @@ -703,7 +703,7 @@ float tpc_decoder::constant_log_map(const float delta1, const float delta2) { // Return maximum of delta1 and delta2 // and in correction value if |delta1-delta2| < TVALUE - register float diff; + float diff; diff = delta2 - delta1; if (diff > TVALUE) |