| Index: Source/wtf/VectorTraits.h
|
| diff --git a/Source/wtf/VectorTraits.h b/Source/wtf/VectorTraits.h
|
| index 20bccc9890ba65855f1dfe3fcca8c171e2147b53..dcd597f60de10fe46209b7f488c0f7bc1e72e2fe 100644
|
| --- a/Source/wtf/VectorTraits.h
|
| +++ b/Source/wtf/VectorTraits.h
|
| @@ -46,7 +46,7 @@ namespace WTF {
|
| static const bool canCopyWithMemcpy = false;
|
| static const bool canFillWithMemset = false;
|
| static const bool canCompareWithMemcmp = false;
|
| - static const bool needsVisiting = NeedsVisiting<T>::value;
|
| + static const bool needsMarking = NeedsMarking<T>::value;
|
| static const bool isWeak = IsWeak<T>::value;
|
| };
|
|
|
| @@ -60,7 +60,7 @@ namespace WTF {
|
| static const bool canCopyWithMemcpy = true;
|
| static const bool canFillWithMemset = sizeof(T) == sizeof(char);
|
| static const bool canCompareWithMemcmp = true;
|
| - static const bool needsVisiting = NeedsVisiting<T>::value;
|
| + static const bool needsMarking = NeedsMarking<T>::value;
|
| static const bool isWeak = IsWeak<T>::value;
|
| };
|
|
|
| @@ -98,7 +98,7 @@ namespace WTF {
|
| static const bool canCopyWithMemcpy = FirstTraits::canCopyWithMemcpy && SecondTraits::canCopyWithMemcpy;
|
| static const bool canFillWithMemset = false;
|
| static const bool canCompareWithMemcmp = FirstTraits::canCompareWithMemcmp && SecondTraits::canCompareWithMemcmp;
|
| - static const bool needsVisiting = FirstTraits::needsVisiting || SecondTraits::needsVisiting;
|
| + static const bool needsMarking = FirstTraits::needsMarking || SecondTraits::needsMarking;
|
| static const bool isWeak = FirstTraits::isWeak || SecondTraits::isWeak;
|
| };
|
|
|
|
|