Commit 8fadade2 by Wenzel Jakob

add valarray to documentation, update docutils on travis

parent 4e959c9a
...@@ -39,7 +39,7 @@ matrix: ...@@ -39,7 +39,7 @@ matrix:
- os: linux - os: linux
language: docs language: docs
env: DOCS STYLE LINT env: DOCS STYLE LINT
install: pip install sphinx sphinx_rtd_theme flake8 pep8-naming install: pip install --upgrade sphinx sphinx_rtd_theme flake8 pep8-naming docutils
script: script:
- make -C docs html SPHINX_OPTIONS=-W - make -C docs html SPHINX_OPTIONS=-W
- tools/check-style.sh - tools/check-style.sh
......
...@@ -116,6 +116,8 @@ as arguments and return values, refer to the section on binding :ref:`classes`. ...@@ -116,6 +116,8 @@ as arguments and return values, refer to the section on binding :ref:`classes`.
+------------------------------------+---------------------------+-------------------------------+ +------------------------------------+---------------------------+-------------------------------+
| ``std::vector<T>`` | STL dynamic array | :file:`pybind11/stl.h` | | ``std::vector<T>`` | STL dynamic array | :file:`pybind11/stl.h` |
+------------------------------------+---------------------------+-------------------------------+ +------------------------------------+---------------------------+-------------------------------+
| ``std::valarray<T>`` | STL value array | :file:`pybind11/stl.h` |
+------------------------------------+---------------------------+-------------------------------+
| ``std::list<T>`` | STL linked list | :file:`pybind11/stl.h` | | ``std::list<T>`` | STL linked list | :file:`pybind11/stl.h` |
+------------------------------------+---------------------------+-------------------------------+ +------------------------------------+---------------------------+-------------------------------+
| ``std::map<T1, T2>`` | STL ordered map | :file:`pybind11/stl.h` | | ``std::map<T1, T2>`` | STL ordered map | :file:`pybind11/stl.h` |
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment