Skip to content

Commit

Permalink
Merge pull request rdkcentral#1569 from rdkcentral/development/compil…
Browse files Browse the repository at this point in the history
…e-fix

Compile fix
  • Loading branch information
HaseenaSainul authored Apr 15, 2024
2 parents 62ccfbe + 8df6bae commit 7d9911b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/core/TextStreamRedirectType.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ namespace Core {
public:
void Register(ReaderImplementation& source) {
_adminLock.Lock();
typename Implementations::iterator entry(std::find(_resources.begin(), _resources.end(), &source);
typename Implementations::iterator entry(std::find(_resources.begin(), _resources.end(), &source));
ASSERT(entry == _resources.end());
if (entry == _resources.end()) {
_resources.push_back(&source);
Expand Down

0 comments on commit 7d9911b

Please sign in to comment.