Skip to content

Commit

Permalink
Fix issue referencing now static function.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jun 21, 2023
1 parent d285618 commit e05f74f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/substrait/textplan/tests/RoundtripTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ std::string addLineNumbers(const std::string& text) {

::substrait::proto::Plan normalizePlan(const ::substrait::proto::Plan& plan) {
::substrait::proto::Plan newPlan = plan;
ReferenceNormalizer normalizer;
normalizer.normalize(&newPlan);
ReferenceNormalizer::normalize(&newPlan);
return newPlan;
}

Expand Down

0 comments on commit e05f74f

Please sign in to comment.