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

Use struct consistently for basic_full etc

svn path=/trunk/boost/boost/numeric/ublas/; revision=29159
This commit is contained in:
Michael Stevens
2005-05-23 16:05:27 +00:00
parent a43604e58d
commit 863aae8e2a

View File

@@ -145,11 +145,11 @@ namespace boost { namespace numeric { namespace ublas {
// Triangular matrix parameterisation
template <class Z = std::size_t>
class basic_full;
struct basic_full;
typedef basic_full<> full;
template <class Z = std::size_t>
class basic_lower;
struct basic_lower;
typedef basic_lower<> lower;
template <class Z = std::size_t>