OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 #ifndef DART_USE_TCMALLOC | |
zra
2017/01/06 16:13:17
#if !defined(DART_USE_TCMALLOC)
bkonyi
2017/01/06 20:23:34
Done.
| |
6 | |
7 #include "vm/malloc_hooks.h" | |
8 | |
9 namespace dart { | |
10 | |
11 void MallocHooks::Init() { | |
12 // TODO(bkonyi): Implement | |
13 } | |
14 | |
15 } // namespace dart | |
16 #endif | |
zra
2017/01/06 16:13:17
Missing newline and // !defined(DART_USE_TCMALLOC)
bkonyi
2017/01/06 20:23:34
Done.
| |
OLD | NEW |