2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-20 03:02:13 +00:00

Allow for branch support of non default constructable proxies

[SVN r29867]
This commit is contained in:
Michael Stevens
2005-07-01 20:29:14 +00:00
parent c4195b0eb6
commit 3ffdc235b4

View File

@@ -5,6 +5,21 @@
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*/
/*
* Default construct test when possible
*/
template <class E>
struct default_construct
{
static void test ()
{
VC default_constuct;
initialize_vector (default_constuct);
std::cout << "default construct = " << default_constuct << std::endl;
}
};
/*
* Initialise test values in vector/matrix
*/