Hi,
Changing "Source* const & source" to just "Source* source" breaks rvct
build... However Source*& source works fine.

   "v8.be\src\factory.h", line 335: Error:  #308: more than one
instance of overloaded function "v8::internal::BitCast" matches the ar
gument list:
               function template
"v8::internal::BitCast<Dest,Source>(const Source &)__softfp"
               function template
"v8::internal::BitCast<Dest,Source>(Source *)__softfp"
               argument types are: (v8::internal::Object **)
       ROOT_LIST(ROOT_ACCESSOR)

template <class Dest, class Source>
inline Dest BitCast(Source* source) {
  return BitCast<Dest>(reinterpret_cast<uintptr_t>(source));
}

Thanks
Vlad

-- 
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to