Hello,<br><br>During compilation of source file, which contains following code:<br><br><pre><br><br>-record(ctx_ids, {<br> used = [],<br> free = []<br> }).<br><br>-record(context, {<br> ctx_id,<br>
term_ids<br> }).<br><br>-record(core_state, {<br> ctx_ids = [] :: [#ctx_ids{}],<br> contexts = [] :: [#context{}]<br> }).<br><br></pre><br clear="all"><br>I see a warning:<br>
<pre><br>Warning: record context is unused<br></pre><br><br>Record #context is unused in code, except in definition of record #core_state.<br>May be is it compilation bug?<br><br>Thank you.<br><br>-- <br>Maxim Treskin