summaryrefslogtreecommitdiff
path: root/src/node_process_events.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_process_events.cc')
-rw-r--r--src/node_process_events.cc15
1 files changed, 1 insertions, 14 deletions
diff --git a/src/node_process_events.cc b/src/node_process_events.cc
index 0c149b26e3..34f0251cab 100644
--- a/src/node_process_events.cc
+++ b/src/node_process_events.cc
@@ -1,8 +1,7 @@
-#include <cstdarg>
#include <set>
#include "env-inl.h"
-#include "node_process.h"
+#include "node_process-inl.h"
#include "util.h"
namespace node {
@@ -84,18 +83,6 @@ Maybe<bool> ProcessEmitWarningGeneric(Environment* env,
return Just(true);
}
-// Call process.emitWarning(str), fmt is a snprintf() format string
-Maybe<bool> ProcessEmitWarning(Environment* env, const char* fmt, ...) {
- char warning[1024];
- va_list ap;
-
- va_start(ap, fmt);
- vsnprintf(warning, sizeof(warning), fmt, ap);
- va_end(ap);
-
- return ProcessEmitWarningGeneric(env, warning);
-}
-
std::set<std::string> experimental_warnings;