Merge changes in Boost.Array to release

[SVN r70697]
This commit is contained in:
Marshall Clow
2011-03-29 14:47:50 +00:00
parent 26edbea113
commit eea368fadf
2 changed files with 8 additions and 9 deletions

View File

@ -15,12 +15,11 @@
#include <boost/array.hpp> #include <boost/array.hpp>
#include "print.hpp" #include "print.hpp"
using namespace std; using namespace std;
using namespace boost;
int main() int main()
{ {
// create and initialize array // create and initialize array
array<int,10> a = { { 1, 2, 3, 4, 5 } }; boost::array<int,10> a = { { 1, 2, 3, 4, 5 } };
print_elements(a); print_elements(a);