Skip to content

Commit

Permalink
Clang fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jul 27, 2023
1 parent 8208b07 commit 4526df7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/substrait/common/Io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ absl::StatusOr<::substrait::proto::Plan> loadPlanWithUnknownEncoding(
case kText:
return textplan::loadFromText(*contentOrError);
}
return absl::UnimplementedError("Unexpected encoding requested.");
}

absl::Status savePlan(
Expand All @@ -70,6 +71,7 @@ absl::Status savePlan(
case kText:
return textplan::savePlanToText(plan, output_filename);
}
return absl::UnimplementedError("Unexpected encoding requested.");
}

} // namespace io::substrait
2 changes: 2 additions & 0 deletions src/substrait/textplan/StringManipulation.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

#pragma once

#include <string>
#include <string_view>
#include <vector>

namespace io::substrait::textplan {

Expand Down

0 comments on commit 4526df7

Please sign in to comment.