Custom Query (146 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 146)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Owner Reporter Resolution Summary
#32 Rob Schluntz <rschlunt@…> Thierry Delisle fixed assert.h fails to compile in non __STRICT_ANSI__ mode
Description

The following code fails to compile :

extern void foo();

void libFloor() { 
	({
		if( 1 == 0 )
			; 
		else 
			foo(); 
	});
}

This code is equivalent to what can be in assert.h

#40 Thierry Delisle pabuhr fixed Full coroutine
Description

full coroutines do not work because there is no starter to return to.

#41 Rob Schluntz <rschlunt@…> Thierry Delisle fixed Duplicate function on generic specialisation
Description
forall( dtype T )
struct ptr_t {
	T * ptr;
};

int foo( ptr_t( int ) p ) {
	return 3;
}

int foo( ptr_t( float ) p ) {
	return 4;
}

yields

test.c:10:1 error: duplicate function definition for foo: function
  with parameters
    p: instance of struct ptr_t 
      with parameters
        float

  returning 
    _retval_foo:       Attribute with name: unused
signed int
  with body 
    CompoundStmt
      Return Statement, returning: 
          constant expression (4 4: signed int)

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