Use more auto keyword

Performed using modernize-use-auto from clang-tidy.

https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-auto.html
issue#70
Sébastien Villemot 2021-02-01 12:42:59 +01:00
parent 07391e0f9f
commit 4ee89d6e70
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 2 additions and 2 deletions

View File

@ -1930,7 +1930,7 @@ public:
mexPrintf("FBEGINBLOCK\n");
# endif
{
FBEGINBLOCK_ *fbegin_block = new FBEGINBLOCK_;
auto *fbegin_block = new FBEGINBLOCK_;
code = fbegin_block->load(code);
@ -1958,7 +1958,7 @@ public:
# ifdef DEBUGL
mexPrintf("FCALL\n");
# endif
FCALL_ *fcall = new FCALL_;
auto *fcall = new FCALL_;
code = fcall->load(code);