diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2019-08-07 21:45:12 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2019-08-09 23:04:28 +0200 |
commit | f7bbf2c1d8d780294f3e016aff239ca35eb6516e (patch) | |
tree | e09ab6112e02b2215b2d59ac24d3d6ea2edac745 /docs/doxygen/other/vector_docstub.h | |
parent | 78431dc6941e3acc67c858277dfe4a0ed583643c (diff) |
Tree: clang-format without the include sorting
Diffstat (limited to 'docs/doxygen/other/vector_docstub.h')
-rw-r--r-- | docs/doxygen/other/vector_docstub.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/doxygen/other/vector_docstub.h b/docs/doxygen/other/vector_docstub.h index 062e08d306..4308bb49b2 100644 --- a/docs/doxygen/other/vector_docstub.h +++ b/docs/doxygen/other/vector_docstub.h @@ -1,16 +1,16 @@ -namespace std +namespace std { +/*! + * \brief vector documentation stub + * + * \warning + * This isn't the real vector template. It's just enough to get doxygen + * to draw pretty collaboration diagrams. + */ +template <class T> +class vector { - /*! - * \brief vector documentation stub - * - * \warning - * This isn't the real vector template. It's just enough to get doxygen - * to draw pretty collaboration diagrams. - */ - template<class T> class vector - { - public: - T *p; - }; +public: + T* p; +}; } // namespace std |