<div class="gmail_quote">2010/6/8 Sebastian Redl <span dir="ltr">&lt;<a href="mailto:sebastian.redl@getdesigned.at">sebastian.redl@getdesigned.at</a>&gt;</span><br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im"><br>
On Tue, 8 Jun 2010 12:23:03 +0200, Jos� Tom�s Tocino Garc�a<br>
&lt;<a href="mailto:theom3ga@gmail.com">theom3ga@gmail.com</a>&gt; wrote:<br>
&gt; � � � � cout &lt;&lt; myTree.get&lt;float&gt;(&quot;sonido.limite&quot;, 0.);<br>
&gt;<br>
</div><div class="im">&gt; If I compile using &quot;g++ -o program testcase1.cpp -I.&quot; I get no errors,<br>
but<br>
&gt; if I add &quot;-Wall&quot;, I get:<br>
&gt;<br>
&gt; ./boost/property_tree/detail/ptree_implementation.hpp: In function �int<br>
&gt; main(int, char**)�:<br>
&gt; ./boost/property_tree/detail/ptree_implementation.hpp:728: warning:<br>
&gt; dereferencing pointer �default_value� does break strict-aliasing rules<br>
&gt; /usr/include/boost/optional/optional.hpp:422: note: initialized from<br>
here<br>
&gt;<br>
&gt; What&#39;s the problem? It compiles and works properly, but it would be<br>
great<br>
&gt; to<br>
&gt; have a warning-free compilation output.<br>
<br>
</div>That&#39;s really weird, and looks more like a compiler bug to me than a valid<br>
warning. For sure, &#39;default_value&#39; is certainly not initialized within<br>
optional.hpp. But then, the strict-aliasing warnings are flow-sensitive and<br>
thus emitted during optimization, which means that GCC&#39;s internal view of<br>
the source could be quite seriously messed up by then.<br>
<br>
Do you get the warning if you explicitly type the default value correctly,<br>
i.e. use &#39;0.f&#39; instead of &#39;0.&#39;?<br>
<font color="#888888"><br>
Sebastian</font><br></blockquote></div><br>If I use 0.f, I still get the error, but it disappears if I omit the 
default value. Looks like disabling optimisation (in my code, -O2 was 
actually used) also makes the error disappear.<br>
<br>
I think that&#39;s what I&#39;m going to do, wraping the call in a try...catch 
block, so if the value does not exist, I&#39;ll manually asign it to the 
variable.<br>
<br>
Thanks for your answer.<br clear="all"><br>-- <br>Jos� Tom�s Tocino Garc�a<br>