Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
065966da
Commit
065966da
authored
Nov 28, 2015
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
common.h are supposed to be included from other header, so call it with quotes; ref #3032
parent
6f831ef2
Changes
20
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
include/mruby.h
include/mruby.h
+1
-1
include/mruby/array.h
include/mruby/array.h
+1
-1
include/mruby/class.h
include/mruby/class.h
+1
-1
include/mruby/common.h
include/mruby/common.h
+1
-1
include/mruby/compile.h
include/mruby/compile.h
+1
-1
include/mruby/data.h
include/mruby/data.h
+1
-1
include/mruby/debug.h
include/mruby/debug.h
+1
-1
include/mruby/dump.h
include/mruby/dump.h
+1
-1
include/mruby/error.h
include/mruby/error.h
+1
-1
include/mruby/gc.h
include/mruby/gc.h
+1
-1
include/mruby/hash.h
include/mruby/hash.h
+1
-1
include/mruby/irep.h
include/mruby/irep.h
+1
-1
include/mruby/khash.h
include/mruby/khash.h
+1
-1
include/mruby/numeric.h
include/mruby/numeric.h
+1
-1
include/mruby/proc.h
include/mruby/proc.h
+1
-1
include/mruby/range.h
include/mruby/range.h
+1
-1
include/mruby/string.h
include/mruby/string.h
+1
-1
include/mruby/value.h
include/mruby/value.h
+1
-1
include/mruby/variable.h
include/mruby/variable.h
+1
-1
include/mruby/version.h
include/mruby/version.h
+1
-1
No files found.
include/mruby.h
View file @
065966da
...
...
@@ -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>
...
...
include/mruby/array.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_ARRAY_H
#define MRUBY_ARRAY_H
#include
<mruby/common.h>
#include
"common.h"
/*
* Array class
...
...
include/mruby/class.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_CLASS_H
#define MRUBY_CLASS_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Class class
...
...
include/mruby/common.h
View file @
065966da
/*
**
mruby/common.h - mruby common platform definitions
**
"common.h - mruby common platform definition"
**
** See Copyright Notice in mruby.h
*/
...
...
include/mruby/compile.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_COMPILE_H
#define MRUBY_COMPILE_H
#include
<mruby/common.h>
#include
"common.h"
/**
* MRuby Compiler
...
...
include/mruby/data.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_DATA_H
#define MRUBY_DATA_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Custom C wrapped data.
...
...
include/mruby/debug.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_DEBUG_H
#define MRUBY_DEBUG_H
#include
<mruby/common.h>
#include
"common.h"
/**
* MRuby Debugging.
...
...
include/mruby/dump.h
View file @
065966da
...
...
@@ -9,7 +9,7 @@
#include <mruby.h>
#include <mruby/irep.h>
#include
<mruby/common.h>
#include
"common.h"
/**
* Dumping compiled mruby script.
...
...
include/mruby/error.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_ERROR_H
#define MRUBY_ERROR_H
#include
<mruby/common.h>
#include
"common.h"
/**
* MRuby error handling.
...
...
include/mruby/gc.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_GC_H
#define MRUBY_GC_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Uncommon memory management stuffs.
...
...
include/mruby/hash.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_HASH_H
#define MRUBY_HASH_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Hash class
...
...
include/mruby/irep.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_IREP_H
#define MRUBY_IREP_H
#include
<mruby/common.h>
#include
"common.h"
#include <mruby/compile.h>
/**
...
...
include/mruby/khash.h
View file @
065966da
...
...
@@ -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.
...
...
include/mruby/numeric.h
View file @
065966da
...
...
@@ -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.
...
...
include/mruby/proc.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_PROC_H
#define MRUBY_PROC_H
#include
<mruby/common.h>
#include
"common.h"
#include <mruby/irep.h>
/**
...
...
include/mruby/range.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_RANGE_H
#define MRUBY_RANGE_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Range class
...
...
include/mruby/string.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_STRING_H
#define MRUBY_STRING_H
#include
<mruby/common.h>
#include
"common.h"
/**
* String class
...
...
include/mruby/value.h
View file @
065966da
...
...
@@ -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.
...
...
include/mruby/variable.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_VARIABLE_H
#define MRUBY_VARIABLE_H
#include
<mruby/common.h>
#include
"common.h"
/**
* Functions to access mruby variables.
...
...
include/mruby/version.h
View file @
065966da
...
...
@@ -7,7 +7,7 @@
#ifndef MRUBY_VERSION_H
#define MRUBY_VERSION_H
#include
<mruby/common.h>
#include
"common.h"
/**
* mruby version definition macros
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment