Custom Query (192 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 192)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#169 fixed Memory leaks in IDL parser jasper jasper

Reported by jasper, 17 months ago.

Description

IDL parser leaks memory:

  • returned object has initial reference count that is too high, so is never released
  • yacc was not instructed to release its stack
  • temporary items were not all released under successful parse conditions
  • temporary items were not released at all under unsuccessful parse conditions
#168 fixed Start menu folder jasper jasper

Reported by jasper, 17 months ago.

Description

... should start with "CAPE-OPEN COBIA..." for the SDK

#167 invalid ConstCapeArrayReal scalar constructor take reference to real jasper jasper

Reported by jasper, 17 months ago.

Description

Constructor

ConstCapeArrayReal arr{1.2};

does not work, as the scalar constructor takes a reference to a real. This works but is unpleasant for a constant:

CapeReal value=1.2;
ConstCapeArrayReal arr{value};

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.