Skip to content

Commit 3e25ed9

Browse files
committed
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.
1 parent 3b923a7 commit 3e25ed9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/node_buffer.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
2020
// USE OR OTHER DEALINGS IN THE SOFTWARE.
2121

22+
#ifndef SRC_NODE_BUFFER_H_
23+
#define SRC_NODE_BUFFER_H_
24+
2225
#include "node.h"
2326
#include "smalloc.h"
2427
#include "v8.h"
2528

26-
#ifndef SRC_NODE_BUFFER_H_
27-
#define SRC_NODE_BUFFER_H_
28-
2929
namespace node {
3030
namespace Buffer {
3131

0 commit comments

Comments
 (0)