oox: replace boost::array with std::array

Change-Id: Id9a8f7dbbf13890e7c9787d9b0737f1087e4a509
This commit is contained in:
Michael Stahl
2016-05-25 11:40:48 +02:00
parent 1e3b7cbff6
commit 4384ee727c

View File

@@ -21,10 +21,8 @@
#define INCLUDED_OOX_SOURCE_DRAWINGML_DIAGRAM_DIAGRAMLAYOUTATOMS_HXX #define INCLUDED_OOX_SOURCE_DRAWINGML_DIAGRAM_DIAGRAMLAYOUTATOMS_HXX
#include <map> #include <map>
#include <string>
#include <memory> #include <memory>
#include <boost/array.hpp> #include <array>
#include <com/sun/star/uno/Any.hxx> #include <com/sun/star/uno/Any.hxx>
#include <com/sun/star/xml/sax/XFastAttributeList.hpp> #include <com/sun/star/xml/sax/XFastAttributeList.hpp>
@@ -239,7 +237,7 @@ public:
}; };
// we know that the array is of fixed size // we know that the array is of fixed size
// the use of Any allow having empty values // 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) {} LayoutNode() : mnChildOrder(0) {}
virtual ~LayoutNode() { } virtual ~LayoutNode() { }