0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

make: remove node_dtrace from cpplint excludes

PR-URL: https://github.com/joyent/node/pull/8741
Reviewed-By: Fedor Indutny <fedor@indutny.com>
This commit is contained in:
Julien Gilli 2014-11-17 12:00:11 -08:00 committed by cjihrig
parent 30666f22ca
commit 68d4bed2fd
2 changed files with 5 additions and 6 deletions

View File

@ -385,7 +385,6 @@ jslint:
PYTHONPATH=tools/closure_linter/:tools/gflags/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js
CPPLINT_EXCLUDE ?=
CPPLINT_EXCLUDE += src/node_dtrace.cc
CPPLINT_EXCLUDE += src/node_lttng.cc
CPPLINT_EXCLUDE += src/node_root_certs.h
CPPLINT_EXCLUDE += src/node_lttng_tp.h

View File

@ -1,12 +1,8 @@
#include "util.h"
#include "node_dtrace.h"
#ifdef HAVE_DTRACE
#include "node_dtrace.h"
#include "node_provider.h"
#include <string.h>
#elif HAVE_ETW
#include "node_dtrace.h"
#include <string.h>
#include "node_win32_etw_provider.h"
#include "node_win32_etw_provider-inl.h"
#else
@ -29,6 +25,10 @@
#include "env.h"
#include "env-inl.h"
#include "util.h"
#include <string.h>
namespace node {
using v8::FunctionCallbackInfo;