Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-03-10 03:11:11 +0400
committerBen Noordhuis <info@bnoordhuis.nl>2012-03-10 03:14:14 +0400
commitff4a9d381d2c77d1e074f9886c71003d5b7db25f (patch)
tree93507a7dc06d66551215030f6a6fc5cbb9dacb09 /src/node_constants.h
parent8c02f9b7c844909cf5977d065b793c99eb0f9c45 (diff)
core: use proper #include directives
Diffstat (limited to 'src/node_constants.h')
-rw-r--r--src/node_constants.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_constants.h b/src/node_constants.h
index ac7dce00f67..c75f40abf73 100644
--- a/src/node_constants.h
+++ b/src/node_constants.h
@@ -22,8 +22,8 @@
#ifndef SRC_CONSTANTS_H_
#define SRC_CONSTANTS_H_
-#include <node.h>
-#include <v8.h>
+#include "node.h"
+#include "v8.h"
namespace node {
void DefineConstants(v8::Handle<v8::Object> target);