int i = 2; // what do you use as a throwaway line when you just need something to breakpoint on?
- by rektide
Whenever I want a breakpoint someplace where there isnt anything to break on just (inside a loop, &c), I tend to automatically drop down a:
int i = 2;
I'm curious what others use.