diff options
author | Anna Henningsen <anna@addaleax.net> | 2020-01-21 18:30:20 +0100 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2020-01-23 22:38:58 +0100 |
commit | 9cc747bfcea131797fbf0fcc805f1d7fa244b7da (patch) | |
tree | 2b9a0df517ed3da88b9ddeca6fda35851d43c913 /src/inspector_profiler.cc | |
parent | f6c6236d956be763ffe8eb1420e19eaab2962e8d (diff) | |
download | node-new-9cc747bfcea131797fbf0fcc805f1d7fa244b7da.tar.gz |
src: add C++-style sprintf utility
Add an utility that handles C++-style strings and objects well.
PR-URL: https://github.com/nodejs/node/pull/31446
Fixes: https://github.com/nodejs/node/issues/28761
Fixes: https://github.com/nodejs/node/issues/31218
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'src/inspector_profiler.cc')
-rw-r--r-- | src/inspector_profiler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector_profiler.cc b/src/inspector_profiler.cc index e0d02d6952..f9d3c2b512 100644 --- a/src/inspector_profiler.cc +++ b/src/inspector_profiler.cc @@ -1,6 +1,6 @@ #include "inspector_profiler.h" #include "base_object-inl.h" -#include "debug_utils.h" +#include "debug_utils-inl.h" #include "diagnosticfilename-inl.h" #include "memory_tracker-inl.h" #include "node_file.h" |