diff options
author | Noel Grandin <noel@peralex.com> | 2015-11-04 09:57:34 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-11-04 09:41:37 +0000 |
commit | 6911997675ec74ce71c4b3cb954a02bd1a0b3bf8 (patch) | |
tree | 2676631507ce3fc0a79edc8ba47fa448d6981345 /include | |
parent | 67b4adc473c14f6ab72c27b52e77a76ed387dccc (diff) |
boost::array->std::array in include/oox
Change-Id: I9c33a42d037c50dc05915f889a0f3a31bb8f0fb9
Reviewed-on: https://gerrit.libreoffice.org/19777
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/ppt/animationspersist.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/oox/ppt/animationspersist.hxx b/include/oox/ppt/animationspersist.hxx index 72187269c90b..c4165a1abe06 100644 --- a/include/oox/ppt/animationspersist.hxx +++ b/include/oox/ppt/animationspersist.hxx @@ -23,7 +23,7 @@ #include <list> #include <memory> -#include <boost/array.hpp> +#include <array> #include <rtl/ustring.hxx> @@ -48,7 +48,7 @@ namespace oox { namespace ppt { _NP_SIZE }; - typedef boost::array< css::uno::Any, _NP_SIZE > NodePropertyMap; + typedef std::array< css::uno::Any, _NP_SIZE > NodePropertyMap; /** data for CT_TLShapeTargetElement */ |