We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81a3055 commit 609c063Copy full SHA for 609c063
src/node_report.cc
@@ -752,7 +752,6 @@ static void PrintSystemInformation(JSONWriter* writer) {
752
753
writer->json_objectstart("userLimits");
754
struct rlimit limit;
755
- std::string soft, hard;
756
757
for (size_t i = 0; i < arraysize(rlimit_strings); i++) {
758
if (getrlimit(rlimit_strings[i].id, &limit) == 0) {
@@ -788,8 +787,6 @@ static void PrintLoadedLibraries(JSONWriter* writer) {
788
787
789
// Obtain and report the node and subcomponent version strings.
790
static void PrintComponentVersions(JSONWriter* writer) {
791
- std::stringstream buf;
792
-
793
writer->json_objectstart("componentVersions");
794
795
for (const auto& version : per_process::metadata.versions.pairs()) {
0 commit comments