2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-24 04:22:12 +00:00

Allow for branch support of non default constructable proxies

This commit is contained in:
Michael Stevens
2005-07-01 20:29:14 +00:00
parent 356e9a3aeb
commit f780ddb179

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
*/