Boost logo

Boost Users :

Subject: [Boost-users] Compiler warns about 'reference to temporary' with iterator on shared memory map
From: Rajalakshmi Iyer (raj_at_[hidden])
Date: 2012-04-16 08:51:27


Hello,

Consider:

typedef std::pair<int, int> value_type;
typedef allocator<value_type, managed_shared_memory::segment_manager>
ValueAllocator;
typedef boost::interprocess::map<int, int, std::less<int>, ValueAllocator>
A_map;

class A
{
public:
   A() { /* Construct shared memory map */ }
   ~A()

   bool contains(int i);
private:
   A_map* m_objA;
};

inline bool
A::contains(int i)
{
    A_map::iterator itr = m_objA->find(i);
    return (itr != m_objA->end());
}

Here, at the line
   A_map::iterator itr = m_objA->find(i);

I see this warning:

.../boost_1_49_0/include/boost/container/detail/tree.hpp:391:31: warning:
returning reference to temporary [enabled by default]

I dont see a reason for this. Can someone please point out if I am doing
something wrong here?

Thanks in advance,
Regards,
Raj

-- 
Twitter: @Blismobile <http://twitter.com/#!/blismobile>
BlisMobile Media 
32 Percy Street,
London W1T 2DE
www.blismobile.com
[image: BlisMobile] <http://www.blismobile.com/>[image: Follow on Twitter]<http://twitter.com/#!/blismobile>[image: 
Blis Website] <http://www.blismobile.com/>
This communication is from BlisMobile Media, which is a trading name of 
Breeze Tech (UK) Ltd, a company registered in England and Wales with 
registered number 06455773. Its registered office is 32 Percy Street, 
London W1T 2DE, United Kingdom.
 
This communication contains information that is confidential and may also 
be privileged. It is for the exclusive use of the intended recipient(s). If 
you are not the intended recipient(s), please (1) notify info_at_[hidden] by 
forwarding this email and delete all copies from your system and (2) note 
that disclosure, distribution, copying or use of this communication is 
strictly prohibited. Email communications cannot be guaranteed to be secure 
or free from error or viruses. All emails sent to or from a Blismobile 
email account are securely archived and stored by an external supplier. This 
email does not constitute a contractual agreement; such agreements are in 
specified contractual or Insertion Order (IO) form only 
and exclusively contain all the terms to which Breeze Tech )UK) Ltd will be 
bound. To the extent permitted by law, Breeze Tech (UK) Ltd does not accept 
any liability for use of or reliance on the contents of this email by any 
person save by the intended recipient(s) to the extent agreed in a contract 
or Insertion Order.
 
Opinions, conclusions and other information in this email which have not 
been delivered by way of the business of Breeze Tech (UK) Ltd are neither 
given nor endorsed by it.


Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net