I've recently started to use Eclipse-CDT and was curious about 'this' and 'this@entry' in the variables window in the debugging perspective. They both have the same memory address and look identical but then why include both? Is 'this@entry' meant to represent the state of 'this' at some breakpoint within a function? Do the values represented under 'this@entry' go out of scope, so to speak, and update 'this' when the function returns?
team1,2 and currentMatch are global variables to the class I am debugging, and the breakpoints are in a member function of that class.