mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
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.
This commit is contained in:
@@ -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 {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user