8000 Fix C++ bitrot. · davidgiven/calculon@f2b60fe · GitHub
[go: up one dir, main page]

Skip to content

Commit

Permalink
Fix C++ bitrot.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidgiven committed Oct 18, 2022
1 parent 3d56ca8 commit f2b60fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/calculon_lexer.h
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ class Lexer

void read_number()
{
std::ios::streampos pos = _data.tellg();
std::streampos pos = _data.tellg();

_data >> _realValue;
if (!_data)
Expand Down

0 comments on commit f2b60fe

Please sign in to comment.
0