8// taken from http://stackoverflow.com/questions/3020584/avoid-warning-unreferenced-formal-parameter, ugly but avoids having to #include the definition of an unreferenced struct/class
9
10#if defined (_MSC_VER)
11
12 #define AWS_UNREFERENCED_PARAM(x) (&reinterpret_cast<const int &>(x))