forked from boostorg/array
Merge changes in Boost.Array to release
[SVN r70697]
This commit is contained in:
@ -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);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user