changeset 28587:6310bb807752

lex.ll: Correct indentation in cset 703458652e30. * lex.ll (base_lexer::handle_number<16>): Indent if statement to correct position.
author Rik <rik@octave.org>
date Fri, 17 Jul 2020 14:36:47 -0700
parents 703458652e30
children ee9b1081471f
files libinterp/parse-tree/lex.ll
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/lex.ll	Fri Jul 17 16:56:53 2020 -0400
+++ b/libinterp/parse-tree/lex.ll	Fri Jul 17 14:36:47 2020 -0700
@@ -3158,7 +3158,7 @@
     bool unsigned_val = true;
     int bytes = -1;
 
-if (pos == std::string::npos)
+    if (pos == std::string::npos)
       {
         size_t num_digits = yytxt.length ();