mbed-os/hal
Christopher Haster e806b89df6 Fixed handling of const objects in Callback class
Before, the following results in a compilation error:

    const struct Object *obj;
    void obj_doit(const Object *obj);

    Callback<void()> cb(obj, obj_doit);

This is especially noticable when migrating from the old Thread
constructor, which previously _required_ const.

Short term fix for all cv qualifiers through a C cast:
void *_obj = (void*)obj;
2016-07-20 19:20:32 -05:00
..
api Fixed handling of const objects in Callback class 2016-07-20 19:20:32 -05:00
common Create singleton class and update code to use it 2016-07-15 14:37:43 -05:00
hal spi hal - specify default bit order 2016-06-16 15:31:17 +01:00
targets Merge branch 'fix_int_handler' of https://github.com/svastm/mbed into svastm-fix_int_handler 2016-07-19 14:10:25 +01:00
.yotta_ignore Simplify layout: 2016-05-23 09:13:59 +01:00
CMakeLists.txt Simplify layout: 2016-05-23 09:13:59 +01:00
module.json Simplify layout: 2016-05-23 09:13:59 +01:00
targets.json Merge branch 'master' into release 2016-07-19 08:44:34 +01:00