diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-05-25 11:40:48 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-05-25 13:45:40 +0200 |
commit | 4384ee727ce00db931e6d23d526c467b0491941c (patch) | |
tree | 079daf5b5499139a0f7661ed5d60661248092716 /oox | |
parent | 1e3b7cbff66eb81a008eca03b56fcd128ddbe45f (diff) |
oox: replace boost::array with std::array
Change-Id: Id9a8f7dbbf13890e7c9787d9b0737f1087e4a509
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/drawingml/diagram/diagramlayoutatoms.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx index 6cebe6f24ef3..6153e9cb0957 100644 --- a/oox/source/drawingml/diagram/diagramlayoutatoms.hxx +++ b/oox/source/drawingml/diagram/diagramlayoutatoms.hxx @@ -21,10 +21,8 @@ #define INCLUDED_OOX_SOURCE_DRAWINGML_DIAGRAM_DIAGRAMLAYOUTATOMS_HXX #include <map> -#include <string> - #include <memory> -#include <boost/array.hpp> +#include <array> #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/xml/sax/XFastAttributeList.hpp> @@ -239,7 +237,7 @@ public: }; // we know that the array is of fixed size // the use of Any allow having empty values - typedef boost::array< css::uno::Any, 9 > VarMap; + typedef std::array<css::uno::Any, 9> VarMap; LayoutNode() : mnChildOrder(0) {} virtual ~LayoutNode() { } |