diff options
Diffstat (limited to 'o3d')
-rw-r--r-- | o3d/core/cross/service_interface_traits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/o3d/core/cross/service_interface_traits.h b/o3d/core/cross/service_interface_traits.h index cf3f6d8..9db2e0a 100644 --- a/o3d/core/cross/service_interface_traits.h +++ b/o3d/core/cross/service_interface_traits.h @@ -46,7 +46,7 @@ class InterfaceTraits { static const InterfaceId kInterfaceId; private: - static const char unique_; + static char unique_; InterfaceTraits(); DISALLOW_COPY_AND_ASSIGN(InterfaceTraits); @@ -57,7 +57,7 @@ const void* const InterfaceTraits<Interface>::kInterfaceId = &InterfaceTraits<Interface>::unique_; template <typename Interface> -const char InterfaceTraits<Interface>::unique_ = 0; +char InterfaceTraits<Interface>::unique_ = 0; } // namespace o3d |