Skip to content

Commit

Permalink
src: move includes inside include guard
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bnoordhuis committed Aug 19, 2013
1 parent 3b923a7 commit 3e25ed9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/node_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {

Expand Down

0 comments on commit 3e25ed9

Please sign in to comment.