08-30-2012, 01:47 PM
A few more bugs!
It looks like some errors occour if you use sizeof(m_somePropertyHere). For example:
That code returns these errors upon compiling:
Also, in the compiler output, you can't use CTRL+C to copy logs. Even though RMB -> Copy works, CTRL+C is way faster.
It looks like some errors occour if you use sizeof(m_somePropertyHere). For example:
Code:
class Foo
{
new m_bar[128];
private toast()
{
meep = 1;
format(m_bar, sizeof(m_bar), "%d", meep);
}
}That code returns these errors upon compiling:
Code:
error 001: expected token: "]", but found "-identifier-"
warning 215: expression has no effect
error 001: expected token: ";", but found "]"
error 029: invalid expression, assumed zero
fatal error 107: too many error messages on one lineAlso, in the compiler output, you can't use CTRL+C to copy logs. Even though RMB -> Copy works, CTRL+C is way faster.