Singleton means one unique instance for a class. This pointer to the created instance is stored in the var "ms_Singleton". This var is static in the Singleton template. When you declare a static variable in a class (not only in templates), the var needs to be initialised and declared (due to memory management constraints) in the cpp.
So, in this line you are declaring the var and initialising it to 0 (null pointer).