The linker error looks like a bug in gcc as the following change fixes it:
- return pc_offset_map_.empty() ?
(v8::CpuProfileNode::kNoLineNumberInfo) :
(--pc_offset_map_.end())->second;
+ if (pc_offset_map_.empty())
+ return v8::CpuProfileNode::kNoLineNumberInfo;
+ return (--pc_offset_map_.end())->second;
https://codereview.chromium.org/424973004/
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.