summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-08-19 16:39:04 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-08-19 16:42:12 +0200
commit3e25ed905cff08cb450aa82b5383ffd9365cd7ae (patch)
tree29ef08256b1f9853e44ace2f1020c8c3412e6fc4
parent3b923a7ace319015856d5658a4000f1790de632b (diff)
downloadnode-3e25ed905cff08cb450aa82b5383ffd9365cd7ae.tar.gz
src: move includes inside include guard
Having the includes in src/node_buffer.h outside of the include guard is not really harmful but it's inconsistent with other header files.
-rw-r--r--src/node_buffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/node_buffer.h b/src/node_buffer.h
index f8db699f7..ca9a135e9 100644
--- a/src/node_buffer.h
+++ b/src/node_buffer.h
@@ -19,13 +19,13 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE.
+#ifndef SRC_NODE_BUFFER_H_
+#define SRC_NODE_BUFFER_H_
+
#include "node.h"
#include "smalloc.h"
#include "v8.h"
-#ifndef SRC_NODE_BUFFER_H_
-#define SRC_NODE_BUFFER_H_
-
namespace node {
namespace Buffer {