Memory Bot Syntax error

01/15/2017 01:42 ha.ho.a#1
Code:
int CMobList::size()
{
    __asm
	(
		"pushl %%eax\n\t"
		"leal 0x10(%%eax), %%ecx\n\t"
		"movl $0x004E9D50, %%eax\n\t"
		"call *%%eax\n\t"
		"leave\n\t"
		"ret"
	       : : "a"(this) :
    );
    return 0;
}
I get a Syntax error C2059 when compiling this code,,, it suggest to change the ": :" but i dont see anything wrong there ,,, :( sorry for my noobness
01/17/2017 22:40 teroareboss1#2
try..
"ret"
: : "a"(this) : "%ecx"