Custom Query (146 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (43 - 45 of 146)

Ticket Owner Reporter Resolution Summary
#99 Rob Schluntz <rschlunt@…> Thierry Delisle fixed Crash on made-up generic parameters
Description

This crashes:

forall(otype T)
struct ImVector;

void split(char separator, ImVector(TextRange)& out);
#100 Rob Schluntz <rschlunt@…> Thierry Delisle fixed Ternary operator lost of const or some other cost
Description
struct Thingy {
	char name[30];
};

struct MoreThingy {
	Thingy * condig;
};

const char * got(MoreThingy & this) { 
	return this.condig ? this.condig->name : "Nope"; 
}
#105 Thierry Delisle Thierry Delisle fixed Compiler crash deleted expression
Description

This code crashes the compiler :

forall (otype T) {
	struct ImVector {
		T* Data;
	};

	static inline void clear( ImVector(T) & this);
}

struct ImGuiStorage {
	struct Pair	{
		union { int val_i; float val_f; void* val_p; };
	};
    	ImVector(Pair) Data;
};

void Clear(ImGuiStorage & this) { clear(this.Data); }
Note: See TracQuery for help on using queries.