Index: libs/array/test/array2.cpp =================================================================== --- libs/array/test/array2.cpp (revision 69286) +++ libs/array/test/array2.cpp (working copy) @@ -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);