summaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.rst
diff options
context:
space:
mode:
authorKostya Serebryany <kcc@google.com>2016-10-27 20:14:03 +0000
committerKostya Serebryany <kcc@google.com>2016-10-27 20:14:03 +0000
commitf8e32dda35c7009ec80634b9f8475d40721c0dd2 (patch)
tree0239ad5eee9fa55e414a4e697fbb1333276faf25 /docs/ProgrammersManual.rst
parent245c383b9629f4c7c882f026b59daff3137737ed (diff)
[libFuzzer] remove large examples from the libFuzzer docs and link to the libFuzzer tutorial instead; also fix a build error in another file
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@285337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.rst')
-rw-r--r--docs/ProgrammersManual.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/ProgrammersManual.rst b/docs/ProgrammersManual.rst
index 4608a9c15e4..e6362b864aa 100644
--- a/docs/ProgrammersManual.rst
+++ b/docs/ProgrammersManual.rst
@@ -337,6 +337,7 @@ Failure values are constructed using ``make_error<T>``, where ``T`` is any class
that inherits from the ErrorInfo utility, E.g.:
.. code-block:: c++
+
class BadFileFormat : public ErrorInfo<BadFileFormat> {
public:
static char ID;