Skip to content

Commit 8e0053b

Browse files
committed
Fix typo
1 parent 0492eb0 commit 8e0053b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/tcppLibrary.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ namespace tcpp
193193
using TDirectiveHandlersArray = std::unordered_set<std::string>;
194194
public:
195195
Lexer() TCPP_NOEXCEPT = delete;
196-
explicit Lexer(TInputStreamUniquePtr pIinputStream) TCPP_NOEXCEPT;
196+
explicit Lexer(TInputStreamUniquePtr pInputStream) TCPP_NOEXCEPT;
197197
~Lexer() TCPP_NOEXCEPT = default;
198198

199199
bool AddCustomDirective(const std::string& directive) TCPP_NOEXCEPT;
@@ -471,7 +471,7 @@ namespace tcpp
471471

472472
const TToken Lexer::mEOFToken = { E_TOKEN_TYPE::END };
473473

474-
Lexer::Lexer(TInputStreamUniquePtr pIinputStream) TCPP_NOEXCEPT:
474+
Lexer::Lexer(TInputStreamUniquePtr pInputStream) TCPP_NOEXCEPT:
475475
mDirectivesTable
476476
{
477477
{ "define", E_TOKEN_TYPE::DEFINE },
@@ -486,7 +486,7 @@ namespace tcpp
486486
{ "defined", E_TOKEN_TYPE::DEFINED },
487487
}, mCurrLine(), mCurrLineIndex(0)
488488
{
489-
PushStream(std::move(pIinputStream));
489+
PushStream(std::move(pInputStream));
490490
}
491491

492492
bool Lexer::AddCustomDirective(const std::string& directive) TCPP_NOEXCEPT

0 commit comments

Comments
 (0)