Index: src/objects.h |
diff --git a/src/objects.h b/src/objects.h |
index 03db209f13050d943702f10fffbca0a49e7b229c..d1fff2ec9aef1e43ee4ac725cdc872db57037cfa 100644 |
--- a/src/objects.h |
+++ b/src/objects.h |
@@ -2391,7 +2391,7 @@ class FixedArray: public FixedArrayBase { |
public: |
// Setter and getter for elements. |
inline Object* get(int index) const; |
- void SetValue(uint32_t index, Object* value); |
+ inline void SetValue(uint32_t index, Object* value); |
Igor Sheludko
2015/09/01 16:05:50
Do we still need this method? I guess not.
|
static inline Handle<Object> get(Handle<FixedArray> array, int index); |
// Setter that uses write barrier. |
inline void set(int index, Object* value); |
@@ -2504,7 +2504,7 @@ class FixedDoubleArray: public FixedArrayBase { |
inline uint64_t get_representation(int index); |
static inline Handle<Object> get(Handle<FixedDoubleArray> array, int index); |
// This accessor has to get a Number as |value|. |
- void SetValue(uint32_t index, Object* value); |
+ inline void SetValue(uint32_t index, Object* value); |
Igor Sheludko
2015/09/01 16:05:50
Do we still need this method?
|
inline void set(int index, double value); |
inline void set_the_hole(int index); |
@@ -4303,7 +4303,7 @@ class FixedTypedArray: public FixedTypedArrayBase { |
// This accessor applies the correct conversion from Smi, HeapNumber |
// and undefined. |
- void SetValue(uint32_t index, Object* value); |
+ inline void SetValue(uint32_t index, Object* value); |
DECLARE_PRINTER(FixedTypedArray) |
DECLARE_VERIFIER(FixedTypedArray) |