File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
#ifndef AHEUIPLUSPLUS_HEADER_INTERPRETER_HPP
2
2
#define AHEUIPLUSPLUS_HEADER_INTERPRETER_HPP
3
3
4
- #define AHEUIPLUSPLUS_VERSION_STRING (" 1.1.0 " )
4
+ #define AHEUIPLUSPLUS_VERSION_STRING (" 1.1.1 " )
5
5
#define AHEUIPLUSPLUS_VERSION (1 )
6
6
#define AHEUIPLUSPLUS_VERSION_MAJOR AHEUIPLUSPLUS_VERSION
7
7
#define AHEUIPLUSPLUS_VERSION_MINOR (1 )
8
- #define AHEUIPLUSPLUS_VERSION_PATCH (0 )
8
+ #define AHEUIPLUSPLUS_VERSION_PATCH (1 )
9
9
10
10
#include < Aheuiplusplus/code.hpp>
11
11
#include < Aheuiplusplus/function.hpp>
Original file line number Diff line number Diff line change @@ -297,6 +297,11 @@ namespace app
297
297
}
298
298
299
299
storage_ ()->push (new element (temp));
300
+
301
+ if (debugger_ != nullptr )
302
+ {
303
+ debugger_->is_inputed_ = true ;
304
+ }
300
305
}
301
306
else
302
307
{
@@ -381,6 +386,11 @@ namespace app
381
386
} while (!std::feof (input_stream_));
382
387
383
388
storage_ ()->push (new element (temp));
389
+
390
+ if (debugger_ != nullptr )
391
+ {
392
+ debugger_->is_inputed_ = false ;
393
+ }
384
394
}
385
395
else
386
396
{
@@ -453,9 +463,9 @@ namespace app
453
463
if (debugger_ != nullptr )
454
464
{
455
465
#if defined(WIN32) || defined(_WIN32) || defined(WIN64) || defined(_WIN64)
456
- debugger_->is_last_input_utf16_ = true ;
466
+ debugger_->is_last_input_utf16_ = false ;
457
467
#endif
458
- debugger_->is_inputed_ = true ;
468
+ debugger_->is_inputed_ = false ;
459
469
}
460
470
}
461
471
You can’t perform that action at this time.
0 commit comments