Index: Source/wtf/TypeTraits.h |
diff --git a/Source/wtf/TypeTraits.h b/Source/wtf/TypeTraits.h |
index 489af633114bd0c6a5c20072a0c10d24cfddb841..c724b214518222714117a170a23f20726d7ca817 100644 |
--- a/Source/wtf/TypeTraits.h |
+++ b/Source/wtf/TypeTraits.h |
@@ -85,7 +85,7 @@ namespace WTF { |
template<typename T> struct IsArithmetic { static const bool value = IsInteger<T>::value || IsFloatingPoint<T>::value; }; |
- template<typename T> struct NeedsVisiting { static const bool value = false; }; |
+ template<typename T> struct NeedsTracing { static const bool value = false; }; |
template<typename T> struct IsWeak { static const bool value = false; }; |
// IsPod is misnamed as it doesn't cover all plain old data (pod) types. |