Given the following:
&row->count
Would &(row->count) be evaluated or (&row)->count be evaluated in C++?
&(row->count)
(&row)->count
Here's a great link for C++ precedence.