Thanks to visit codestin.com Credit goes to github.com
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 5d843c9 commit 36b1cc2Copy full SHA for 36b1cc2
src/node_report.cc
@@ -757,7 +757,6 @@ static void PrintSystemInformation(JSONWriter* writer) {
757
758
writer->json_objectstart("userLimits");
759
struct rlimit limit;
760
- std::string soft, hard;
761
762
for (size_t i = 0; i < arraysize(rlimit_strings); i++) {
763
if (getrlimit(rlimit_strings[i].id, &limit) == 0) {
@@ -793,8 +792,6 @@ static void PrintLoadedLibraries(JSONWriter* writer) {
793
792
794
// Obtain and report the node and subcomponent version strings.
795
static void PrintComponentVersions(JSONWriter* writer) {
796
- std::stringstream buf;
797
-
798
writer->json_objectstart("componentVersions");
799
800
for (const auto& version : per_process::metadata.versions.pairs()) {
0 commit comments