Update Breathe and document BasicArrayWriter(Char (&array)[SIZE])

Fixes #125
This commit is contained in:
vitaut
2015-06-03 18:21:01 -07:00
parent 4d521064cf
commit d311927c64
2 changed files with 2 additions and 3 deletions
+1 -2
View File
@@ -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.