Skip to content

Commit

Permalink
Adjusted includes for a few modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
EpsilonPrime committed Jul 27, 2023
1 parent f6ed071 commit 4979f02
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 6 additions & 3 deletions src/substrait/textplan/converter/SaveBinary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
#include "substrait/textplan/converter/SaveBinary.h"

#include <fmt/format.h>
#include <libc.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <google/protobuf/text_format.h>
#include <google/protobuf/util/json_util.h>
#include <sys/fcntl.h>
#include <sys/stat.h>
#include <fstream>
#include <limits>

#include <google/protobuf/text_format.h>
#include <google/protobuf/util/json_util.h>
#include "substrait/proto/plan.pb.h"
#include "substrait/textplan/StringManipulation.h"
#include "substrait/textplan/SymbolTablePrinter.h"
#include "substrait/textplan/converter/ParseBinary.h"
Expand Down
5 changes: 4 additions & 1 deletion src/substrait/textplan/converter/SaveBinary.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
#pragma once

#include "absl/status/status.h"
#include "substrait/proto/plan.pb.h"

namespace substrait::proto {
class Plan;
}

namespace io::substrait::textplan {

Expand Down

0 comments on commit 4979f02

Please sign in to comment.