Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Resolved an issue where a unique_ptr would not allocate
Co-Authored-By: Timothy Gu <timothygu99@gmail.com>
  • Loading branch information
Yuhanun Citgez and TimothyGu authored Feb 6, 2020
commit 7c623742fd3ad46f5d7e7e8df71a9366f79ecfbf
2 changes: 1 addition & 1 deletion src/debug_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ NativeSymbolDebuggingContext::New() {

std::unique_ptr<NativeSymbolDebuggingContext>
NativeSymbolDebuggingContext::New() {
return std::unique_ptr<NativeSymbolDebuggingContext>();
return std::make_unique<NativeSymbolDebuggingContext>();
}

#endif // HAVE_EXECINFO_H
Expand Down