From 111e93aa4cdb5e75443af1591fe11550b3560e1d Mon Sep 17 00:00:00 2001 From: Marshall Clow Date: Sat, 26 Feb 2011 01:35:48 +0000 Subject: [PATCH] qualify array to avoid conflict with std::array; Refs #5233 [SVN r69291] --- test/array2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/array2.cpp b/test/array2.cpp index 1c8ccf8..b33e0b5 100644 --- a/test/array2.cpp +++ b/test/array2.cpp @@ -15,12 +15,11 @@ #include #include "print.hpp" using namespace std; -using namespace boost; int main() { // create and initialize array - array a = { { 1, 2, 3, 4, 5 } }; + boost::array a = { { 1, 2, 3, 4, 5 } }; print_elements(a);