src: move includes inside include guard
authorBen Noordhuis <info@bnoordhuis.nl>
Mon, 19 Aug 2013 14:39:04 +0000 (16:39 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Mon, 19 Aug 2013 14:42:12 +0000 (16:42 +0200)
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.

src/node_buffer.h

index f8db699..ca9a135 100644 (file)
 // 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 {