Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: fix indentation in memory_tracker-inl.h #36425

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/memory_tracker-inl.h
Expand Up @@ -22,7 +22,7 @@ inline const char* GetNodeName(const char* node_name, const char* edge_name) {
class MemoryRetainerNode : public v8::EmbedderGraph::Node {
public:
inline MemoryRetainerNode(MemoryTracker* tracker,
const MemoryRetainer* retainer)
const MemoryRetainer* retainer)
: retainer_(retainer) {
CHECK_NOT_NULL(retainer_);
v8::HandleScope handle_scope(tracker->isolate());
Expand All @@ -34,9 +34,9 @@ class MemoryRetainerNode : public v8::EmbedderGraph::Node {
}

inline MemoryRetainerNode(MemoryTracker* tracker,
const char* name,
size_t size,
bool is_root_node = false)
const char* name,
size_t size,
bool is_root_node = false)
: retainer_(nullptr) {
name_ = name;
size_ = size;
Expand Down