Skip to content

Commit

Permalink
Fix gcc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MikePopoloski committed Aug 1, 2023
1 parent 4d84bc9 commit 8a886a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/driver/SourceLoader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ SourceLoader::LoadResult SourceLoader::loadAndParse(const FileEntry& entry, cons
if (entry.isLibraryFile || srcOptions.onlyLint)
tree->isLibrary = true;

return std::move(tree);
return tree;
}
};

Expand Down

0 comments on commit 8a886a9

Please sign in to comment.