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

static before const/void

svn path=/trunk/boost/boost/numeric/ublas/; revision=25154
This commit is contained in:
Michael Stevens
2004-09-16 18:40:33 +00:00
parent 8624b5385a
commit bcce763a43
2 changed files with 2 additions and 2 deletions

View File

@@ -1604,7 +1604,7 @@ namespace boost { namespace numeric { namespace ublas {
private:
size_type size_;
array_type data_;
const static indirect_array all_;
static const indirect_array all_;
};
template<class A>

View File

@@ -552,7 +552,7 @@ namespace boost { namespace numeric { namespace ublas {
private:
// Provide destroy as a non member function
BOOST_UBLAS_INLINE
void static static_destroy (reference p) {
static void static_destroy (reference p) {
(&p) -> ~value_type ();
}
ALLOC alloc_;