Skip to content

Commit

Permalink
Try to fix Sphinx error on Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Sep 24, 2019
1 parent c40e0e2 commit 895f04a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/travis_script_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ if [ "$ARROW_TRAVIS_PYTHON_DOCS" == "1" ]; then
doxygen
popd
cd ../docs
sphinx-build -q -b html -d _build/doctrees -W source _build/html
sphinx-build -q -b html -d _build/doctrees -W --keep-going source _build/html
fi

popd # $ARROW_PYTHON_DIR
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/filesystem/filesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,9 @@ class ARROW_EXPORT SubTreeFileSystem : public FileSystem {
std::shared_ptr<FileSystem> base_fs);
~SubTreeFileSystem() override;

/// \cond FALSE
using FileSystem::GetTargetStats;
/// \endcond
Status GetTargetStats(const std::string& path, FileStats* out) override;
Status GetTargetStats(const Selector& select, std::vector<FileStats>* out) override;

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/filesystem/localfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ class ARROW_EXPORT LocalFileSystem : public FileSystem {
LocalFileSystem();
~LocalFileSystem() override;

/// \cond FALSE
using FileSystem::GetTargetStats;
/// \endcond
Status GetTargetStats(const std::string& path, FileStats* out) override;
Status GetTargetStats(const Selector& select, std::vector<FileStats>* out) override;

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/filesystem/s3fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,9 @@ class ARROW_EXPORT S3FileSystem : public FileSystem {
public:
~S3FileSystem() override;

/// \cond FALSE
using FileSystem::GetTargetStats;
/// \endcond
Status GetTargetStats(const std::string& path, FileStats* out) override;
Status GetTargetStats(const Selector& select, std::vector<FileStats>* out) override;

Expand Down
3 changes: 2 additions & 1 deletion cpp/src/arrow/io/file.h
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ class ARROW_EXPORT FileOutputStream : public OutputStream {

// Write bytes to the stream. Thread-safe
Status Write(const void* data, int64_t nbytes) override;

/// \cond FALSE
using Writable::Write;
/// \endcond

int file_descriptor() const;

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/arrow/io/memory.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ class ARROW_EXPORT BufferOutputStream : public OutputStream {
Status Tell(int64_t* position) const override;
Status Write(const void* data, int64_t nbytes) override;

/// \cond FALSE
using OutputStream::Write;
/// \endcond

/// Close the stream and return the buffer
Status Finish(std::shared_ptr<Buffer>* result);
Expand Down

0 comments on commit 895f04a

Please sign in to comment.