~ubuntu-branches/ubuntu/trusty/libv8/trusty

« back to all changes in this revision

Viewing changes to src/hashmap.cc

  • Committer: Package Import Robot
  • Author(s): Jérémy Lal
  • Date: 2012-02-20 14:08:17 UTC
  • mfrom: (15.1.24 sid)
  • Revision ID: package-import@ubuntu.com-20120220140817-bsvmeoa4sxsj5hbz
Tags: 3.7.12.22-3
Fix mipsel build, allow test debug-step-3 to fail (non-crucial)

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
namespace v8 {
37
37
namespace internal {
38
38
 
39
 
Allocator HashMap::DefaultAllocator;
40
 
 
41
 
 
42
 
HashMap::HashMap() {
43
 
  allocator_ = NULL;
44
 
  match_ = NULL;
45
 
}
 
39
Allocator* HashMap::DefaultAllocator = ::new Allocator();
46
40
 
47
41
 
48
42
HashMap::HashMap(MatchFun match,