Skip to content

Commit 5c405de

Browse files
committed
include changed from by quotes ("") to by brackets (<>); close #3032
1 parent 2e0519d commit 5c405de

97 files changed

Lines changed: 348 additions & 348 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

include/mruby.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
#include <limits.h>
3434

3535
#include "mrbconf.h"
36-
#include "mruby/common.h"
37-
#include "mruby/value.h"
38-
#include "mruby/gc.h"
39-
#include "mruby/version.h"
36+
#include <mruby/common.h>
37+
#include <mruby/value.h>
38+
#include <mruby/gc.h>
39+
#include <mruby/version.h>
4040

4141
/**
4242
* MRuby C API entry point

include/mruby/array.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_ARRAY_H
88
#define MRUBY_ARRAY_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/*
1313
* Array class

include/mruby/class.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_CLASS_H
88
#define MRUBY_CLASS_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* Class class

include/mruby/compile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
#ifndef MRUBY_COMPILE_H
88
#define MRUBY_COMPILE_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* MRuby Compiler
1414
*/
1515
MRB_BEGIN_DECL
1616

17-
#include "mruby.h"
17+
#include <mruby.h>
1818

1919
struct mrb_jmpbuf;
2020

include/mruby/data.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_DATA_H
88
#define MRUBY_DATA_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* Custom C wrapped data.

include/mruby/debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_DEBUG_H
88
#define MRUBY_DEBUG_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* MRuby Debugging.

include/mruby/dump.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
#ifndef MRUBY_DUMP_H
88
#define MRUBY_DUMP_H
99

10-
#include "mruby.h"
11-
#include "mruby/irep.h"
12-
#include "mruby/common.h"
10+
#include <mruby.h>
11+
#include <mruby/irep.h>
12+
#include <mruby/common.h>
1313

1414
/**
1515
* Dumping compiled mruby script.

include/mruby/error.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_ERROR_H
88
#define MRUBY_ERROR_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* MRuby error handling.

include/mruby/gc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_GC_H
88
#define MRUBY_GC_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* Uncommon memory management stuffs.

include/mruby/hash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#ifndef MRUBY_HASH_H
88
#define MRUBY_HASH_H
99

10-
#include "mruby/common.h"
10+
#include <mruby/common.h>
1111

1212
/**
1313
* Hash class

0 commit comments

Comments
 (0)