after update VS2015.1 next code no longer compiles:
class testClass { static const std::vector test; };
initialization
in my case I solved this by usage of std::array, and it works for me, but in general case, I suppose that warning disabling is solution
#pragma warning( disable : 4592)