Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 698398459
  • Loading branch information
ArrayRecord Team authored and copybara-github committed Nov 20, 2024
1 parent f59e8a4 commit 5266f99
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions cpp/array_record_reader.h
Original file line number Diff line number Diff line change
Expand Up @@ -378,8 +378,7 @@ template <typename Src>
explicit ArrayRecordReader(
Src&& src,
ArrayRecordReaderBase::Options options = ArrayRecordReaderBase::Options(),
ARThreadPool* pool = nullptr)
-> ArrayRecordReader<riegeli::InitializerTargetT<Src>>;
ARThreadPool* pool = nullptr) -> ArrayRecordReader<riegeli::TargetT<Src>>;

} // namespace array_record

Expand Down
3 changes: 1 addition & 2 deletions cpp/array_record_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,7 @@ template <typename Dest>
explicit ArrayRecordWriter(
Dest&& dest,
ArrayRecordWriterBase::Options options = ArrayRecordWriterBase::Options(),
ARThreadPool* pool = nullptr)
-> ArrayRecordWriter<riegeli::InitializerTargetT<Dest>>;
ARThreadPool* pool = nullptr) -> ArrayRecordWriter<riegeli::TargetT<Dest>>;

} // namespace array_record

Expand Down
2 changes: 1 addition & 1 deletion cpp/sequenced_chunk_writer.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ class SequencedChunkWriter : public SequencedChunkWriterBase {

template <typename Dest>
explicit SequencedChunkWriter(Dest&& dest)
-> SequencedChunkWriter<riegeli::InitializerTargetT<Dest>>;
-> SequencedChunkWriter<riegeli::TargetT<Dest>>;

} // namespace array_record

Expand Down

0 comments on commit 5266f99

Please sign in to comment.