win32 in vs2013 compilation fix

This commit is contained in:
Matej Sekoranja
2014-10-28 19:36:57 +01:00
parent 435ca63d1b
commit 587f81f511
5 changed files with 30 additions and 18 deletions
+3 -3
View File
@@ -34,8 +34,8 @@ For example:</p>
</code></pre>
<p>is replaced by</p>
<pre><code> PVDoublePtr pvValue;
cout &lt;&lt; pvValue=&gt;dumpValue(cout) &lt;&lt; endl
cout &lt;&lt; pvValue-&gt;getField()-&gt;dump(cout) &lt;&lt; endl;
cout &lt;&lt; *pvValue &lt;&lt; endl
cout &lt;&lt; *pvValue-&gt;getField() &lt;&lt; endl;
</code></pre>
<h2>union is a new basic type.</h2>
<p>There are two new basic types: union_t and unionArray.</p>
@@ -55,4 +55,4 @@ only on pvData, i. e. it no longer has any knowledge of PVRecord.</p>
<p>This is for is for use by code that implements pvAccess monitors.
This is prototype and is subject to debate.</p>
<h1>Release 3.0.2</h1>
<p>This was the starting point for RELEASE_NOTES</p>
<p>This was the starting point for RELEASE_NOTES</p>