Skip to content

Commit

Permalink
Update Breathe and document BasicArrayWriter(Char (&array)[SIZE])
Browse files Browse the repository at this point in the history
Fixes #125
  • Loading branch information
vitaut committed Jun 4, 2015
1 parent 4d52106 commit d311927
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def build_docs():
execfile(activate_this_file, dict(__file__=activate_this_file))
# Install Sphinx and Breathe.
pip_install('sphinx==1.3.1')
pip_install('michaeljones/breathe', '18bd461b4e29dde0adf5df4b3da7e5473e2c2983')
pip_install('michaeljones/breathe', '511b0887293e7c6b12310bb61b3659068f48f0f4')
# Build docs.
cmd = ['doxygen', '-']
p = Popen(cmd, stdin=PIPE, cwd=doc_dir)
Expand Down
3 changes: 1 addition & 2 deletions format.h
Original file line number Diff line number Diff line change
Expand Up @@ -2378,8 +2378,7 @@ class BasicArrayWriter : public BasicWriter<Char> {
BasicArrayWriter(Char *array, std::size_t size)
: BasicWriter<Char>(buffer_), buffer_(array, size) {}

// FIXME: this is temporary undocumented due to a bug in Sphinx
/*
/**
\rst
Constructs a :class:`fmt::BasicArrayWriter` object for *array* of the
size known at compile time.
Expand Down

0 comments on commit d311927

Please sign in to comment.