File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments