Github user pivotal-jbarrett commented on a diff in the pull request: https://github.com/apache/geode-native/pull/27#discussion_r102746696 --- Diff: src/cppcache/src/statistics/HostStatHelperWin.cpp --- @@ -535,21 +535,21 @@ uint32 HostStatHelperWin::getInt32Value(PPERF_COUNTER_DEFINITION PerfCntr, } if (PerfCntr->CounterSize == 4) { - uint32* lptr; - lptr = (uint32*)((char*)PerfCntrBlk + PerfCntr->CounterOffset); + uint32_t* lptr; + lptr = (uint32_t*)((char*)PerfCntrBlk + PerfCntr->CounterOffset); --- End diff -- What is this really trying to do? Maybe fix it? C++11 style casting changes at least.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---