diff --git a/src/CodeInterpreter.hh b/src/CodeInterpreter.hh
index 70a87ff0bc408f943e8d1d7312cfb53e4a2c25eb..4834f879d580e09914222c4a37ac2e0b5d715287 100644
--- a/src/CodeInterpreter.hh
+++ b/src/CodeInterpreter.hh
@@ -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);