|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r59515 - sandbox/statistics/detail/assign/boost/assign
From: erwann.rogard_at_[hidden]
Date: 2010-02-05 14:48:19
Author: e_r
Date: 2010-02-05 14:48:19 EST (Fri, 05 Feb 2010)
New Revision: 59515
URL: http://svn.boost.org/trac/boost/changeset/59515
Log:
m
Text files modified:
sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Modified: sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp
==============================================================================
--- sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp (original)
+++ sandbox/statistics/detail/assign/boost/assign/cref_list_of2.hpp 2010-02-05 14:48:19 EST (Fri, 05 Feb 2010)
@@ -100,12 +100,12 @@
iterator begin()
{
this->alloc_if();
- return boost::begin(*ptr);
+ return boost::begin(*this->ptr);
}
iterator end()
{
this->alloc_if();
- return boost::end(*ptr);
+ return boost::end(*this->ptr);
}
size_type size() const
{
@@ -119,11 +119,11 @@
private:
void alloc(){
this->ptr = smart_ptr_(new ref_array_);
- write_to_array(*ptr,*this);
+ write_to_array(*this->ptr,*this);
}
void alloc_if(){
- if(!ptr){
+ if(!this->ptr){
return this->alloc();
}
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk