Skip to content

Commit

Permalink
common.h are supposed to be included from other header, so call it wi…
Browse files Browse the repository at this point in the history
…th quotes; ref #3032
  • Loading branch information
matz committed Nov 27, 2015
1 parent 6f831ef commit 065966d
Show file tree
Hide file tree
Showing 20 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion include/mruby.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include <limits.h>

#include "mrbconf.h"
#include <mruby/common.h>
#include "mruby/common.h"
#include <mruby/value.h>
#include <mruby/gc.h>
#include <mruby/version.h>
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/array.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_ARRAY_H
#define MRUBY_ARRAY_H

#include <mruby/common.h>
#include "common.h"

/*
* Array class
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/class.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_CLASS_H
#define MRUBY_CLASS_H

#include <mruby/common.h>
#include "common.h"

/**
* Class class
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/common.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
** mruby/common.h - mruby common platform definitions
**"common.h - mruby common platform definition"
**
** See Copyright Notice in mruby.h
*/
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/compile.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_COMPILE_H
#define MRUBY_COMPILE_H

#include <mruby/common.h>
#include "common.h"

/**
* MRuby Compiler
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/data.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_DATA_H
#define MRUBY_DATA_H

#include <mruby/common.h>
#include "common.h"

/**
* Custom C wrapped data.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_DEBUG_H
#define MRUBY_DEBUG_H

#include <mruby/common.h>
#include "common.h"

/**
* MRuby Debugging.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/dump.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

#include <mruby.h>
#include <mruby/irep.h>
#include <mruby/common.h>
#include "common.h"

/**
* Dumping compiled mruby script.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_ERROR_H
#define MRUBY_ERROR_H

#include <mruby/common.h>
#include "common.h"

/**
* MRuby error handling.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/gc.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_GC_H
#define MRUBY_GC_H

#include <mruby/common.h>
#include "common.h"

/**
* Uncommon memory management stuffs.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/hash.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_HASH_H
#define MRUBY_HASH_H

#include <mruby/common.h>
#include "common.h"

/**
* Hash class
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/irep.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_IREP_H
#define MRUBY_IREP_H

#include <mruby/common.h>
#include "common.h"
#include <mruby/compile.h>

/**
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/khash.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <string.h>

#include <mruby.h>
#include <mruby/common.h>
#include "common.h"

/**
* khash definitions used in mruby's hash table.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/numeric.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_NUMERIC_H
#define MRUBY_NUMERIC_H

#include <mruby/common.h>
#include "common.h"

/**
* Numeric class and it's sub-classes.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/proc.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_PROC_H
#define MRUBY_PROC_H

#include <mruby/common.h>
#include "common.h"
#include <mruby/irep.h>

/**
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/range.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_RANGE_H
#define MRUBY_RANGE_H

#include <mruby/common.h>
#include "common.h"

/**
* Range class
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/string.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_STRING_H
#define MRUBY_STRING_H

#include <mruby/common.h>
#include "common.h"

/**
* String class
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/value.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_VALUE_H
#define MRUBY_VALUE_H

#include <mruby/common.h>
#include "common.h"

/**
* MRuby Value definition functions and macros.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/variable.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_VARIABLE_H
#define MRUBY_VARIABLE_H

#include <mruby/common.h>
#include "common.h"

/**
* Functions to access mruby variables.
Expand Down
2 changes: 1 addition & 1 deletion include/mruby/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef MRUBY_VERSION_H
#define MRUBY_VERSION_H

#include <mruby/common.h>
#include "common.h"

/**
* mruby version definition macros
Expand Down

0 comments on commit 065966d

Please sign in to comment.