Ticket #5233: array_test.patch

File array_test.patch, 492 bytes (added by Chris Jefferson, 12 years ago)

Patch to libs/array/test/array2.cpp

  • libs/array/test/array2.cpp

     
    1515#include <boost/array.hpp>
    1616#include "print.hpp"
    1717using namespace std;
    18 using namespace boost;
    1918
    2019int main()
    2120{
    2221    // create and initialize array
    23     array<int,10> a = { { 1, 2, 3, 4, 5 } };
     22    boost::array<int,10> a = { { 1, 2, 3, 4, 5 } };
    2423
    2524    print_elements(a);
    2625