Browse Source

Fix linker error on some gcc version on osx

* See: http://codereview.chromium.org/9382033/
v0.7.4-release
Fedor Indutny 13 years ago
parent
commit
e7e4f2f3aa
  1. 3
      deps/v8/src/objects.cc

3
deps/v8/src/objects.cc

@ -11278,6 +11278,9 @@ template MaybeObject* Dictionary<SeededNumberDictionaryShape, uint32_t>::AtPut(
template MaybeObject* Dictionary<UnseededNumberDictionaryShape, uint32_t>::
AtPut(uint32_t, Object*);
template Object* Dictionary<SeededNumberDictionaryShape, uint32_t>::
SlowReverseLookup(Object* value);
template Object* Dictionary<UnseededNumberDictionaryShape, uint32_t>::
SlowReverseLookup(Object* value);

Loading…
Cancel
Save