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 46d4952
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
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

0 comments on commit 46d4952

Please sign in to comment.