summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2012-05-19fix mrb_gc_mark_ht_size() and mrb_gc_free_ht() typesMitchell Blank Jr
mrb_gc_mark_ht_size() and mrb_gc_free_ht() were declared in gc.h as taking a "RHash *" argument, but then they were defined in hash.c as taking a "RClass *" Get these in sync.
2012-05-19C++ compilability: "not" is a C++ keyword, avoid itMitchell Blank Jr
see http://en.cppreference.com/w/cpp/language/operator_alternative
2012-05-19C++ compilabilty -- "new" is a C++ keyword, avoid itMitchell Blank Jr
2012-05-19C++ compilability -- "try" is a keyword, avoid as variable nameMitchell Blank Jr
2012-05-19Helper functions for st_foreach() return "enum st_retval" not "int"Mitchell Blank Jr
Just making this a bit more consistent throughout the code
2012-05-19C++ compilability - don't define types inside othersMitchell Blank Jr
The following is legal code in both C and C++: struct foo { struct bar { int a } x; int y; }; ...however in C++ it defines a type called "foo::bar" instead of "bar". Just avoid this construct altogether
2012-05-19should initialize p->sterm every parse timeYukihiro Matsumoto
2012-05-19remove src/pool.h; close #163Yukihiro Matsumoto
2012-05-19mirb should detect end of expression smarterYukihiro Matsumoto
2012-05-19remove dependency to node.h and pool.hYukihiro Matsumoto
2012-05-19p->tree may be NULL; close #161Yukihiro Matsumoto
2012-05-18remove obsolete minimain.cYukihiro Matsumoto
2012-05-18Merge pull request #158 from pbosetti/testsYukihiro "Matz" Matsumoto
Minor edits to test suite and Math module
2012-05-18implement Kernel#p in RubyYukihiro Matsumoto
2012-05-17Merge branch 'tests' of github.com:pbosetti/mruby into testsPaolo Bosetti
2012-05-18remove unused prototypeYukihiro Matsumoto
2012-05-18revise version descriptionYukihiro Matsumoto
2012-05-18failed to initialize source stringYukihiro Matsumoto
2012-05-18move compile.h to mruby/compile.hYukihiro Matsumoto
2012-05-18add extern "C" guardsYukihiro Matsumoto
2012-05-18yywarn should use warn_buffer not error_bufferYukihiro Matsumoto
2012-05-18remove mrb_parse_nstring_ext; use mrb_parser_new() then set p->capture_error ↵Yukihiro Matsumoto
= 1; then call mrb_parser_parse(); see tool/mirb/mirb.c
2012-05-18keep toplevel local variables; close #133Yukihiro Matsumoto
2012-05-18new API for parserYukihiro Matsumoto
2012-05-17Minor edits in tests for Math modulePaolo Bosetti
2012-05-18remove src/method.hYukihiro Matsumoto
2012-05-18remove unused method.h from kernel.cYukihiro Matsumoto
2012-05-18remove unused method.h from object.cYukihiro Matsumoto
2012-05-17compile error should contain line numberYukihiro Matsumoto
2012-05-17print line number in compile error messagesYukihiro Matsumoto
2012-05-17too many line count in nextc()Yukihiro Matsumoto
2012-05-17add cast to remove warning; close #154Yukihiro Matsumoto
2012-05-17idx should be less than the cap, if it is equal irep needs to grow.Carson McDonald
2012-05-17no SEGV for nth_ref & back_ref; close #152Yukihiro Matsumoto
2012-05-17remove unused assignmentsYukihiro Matsumoto
2012-05-17avoid updating existing libmruby.a to avoid problems on low time resolution ↵Yukihiro Matsumoto
file systems; close #136
2012-05-17avoid isfinite() in num_powYukihiro Matsumoto
2012-05-17redefine POST/NEG FIXABLE using INT_MIN/MAXYukihiro Matsumoto
2012-05-17ignore return value from strtod()Yukihiro Matsumoto
2012-05-17use gperf -L ANSI-C to generate lex.defYukihiro Matsumoto
2012-05-17add mrb_define_singleton_method/mrb_define_module_functionYukihiro Matsumoto
2012-05-17gmtime_r emulated by gmtime_s should return struct tm*; close #146Yukihiro Matsumoto
2012-05-16Merge pull request #139 from pbosetti/masterYukihiro "Matz" Matsumoto
Re-added Math functions missing under MSVC, with custom implementations
2012-05-16Merge pull request #142 from monaka/pr-initialize-variables-20110516Yukihiro "Matz" Matsumoto
Avoid "may be used uninitialized in this function" warning.
2012-05-16Avoid "may be used uninitialized in this function" warning.Masaki Muranaka
2012-05-16Remove unused static functions.Masaki Muranaka
2012-05-16Merged MSVC branchPaolo Bosetti
2012-05-15Code formatting; Added credits for erf/erfc implementationPaolo Bosetti
2012-05-15Added also support for erfc under MSVCPaolo Bosetti
2012-05-15Re-added Math finctions not supported under MSVC, and added preprocessor ↵Paolo Bosetti
directives to support these functions under MSVC too