[Libreoffice-commits] core.git: include/oox
Noel Grandin
noel at peralex.com
Wed Nov 4 01:42:03 PST 2015
include/oox/ppt/animationspersist.hxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 6911997675ec74ce71c4b3cb954a02bd1a0b3bf8
Author: Noel Grandin <noel at peralex.com>
Date: Wed Nov 4 09:57:34 2015 +0200
boost::array->std::array in include/oox
Change-Id: I9c33a42d037c50dc05915f889a0f3a31bb8f0fb9
Reviewed-on: https://gerrit.libreoffice.org/19777
Reviewed-by: Noel Grandin <noelgrandin at gmail.com>
Tested-by: Noel Grandin <noelgrandin at gmail.com>
diff --git a/include/oox/ppt/animationspersist.hxx b/include/oox/ppt/animationspersist.hxx
index 7218726..c4165a1 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 */
More information about the Libreoffice-commits
mailing list