totally lost: technical issue !

hello,

I don’t know exactly what I did but now I get this error message :

profiler.cpp at line 525…

please can you tell something about it ? seems that I can’t build project anymore.

thanks for (future) answers !

Have you used Profiler.BeginSample anywhere? It needs to have matching EndSamples.

If you didn’t then you’ll probably want to disable large portions of script at a time until you can narrow down to the issue.

Necro post for future generations.

I ran into this problem too and found a solution.
The error message appears if you have a stack overflow but catch the exception.

In my case I had:

public Foo Fabble ( Bar bar )
{
try
{return Fabble( bar );
}
catch
{return null;
}
}

Obviously the infinite recursion was a mistake.