From 06ac7e738773f2dec9a65ea62f6763677a9066a9 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Thu, 26 Mar 2015 20:00:24 +0300 Subject: [PATCH] std::array instead of boost::array. --- std/array.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/std/array.hpp b/std/array.hpp index 133163ff0b..41f70448d3 100644 --- a/std/array.hpp +++ b/std/array.hpp @@ -5,9 +5,9 @@ #undef new #endif -#include +#include -using boost::array; +using std::array; #ifdef DEBUG_NEW #define new DEBUG_NEW