ajneu

Results 8 comments of ajneu

Hi there, after having seen [Stroustrup's talk](https://www.youtube.com/watch?v=1OEu9C51K2A), I want to try the GSL. But I cannot. I cannot find developer-friendly details (i.e. tutorial) about it. A **tutorial-based intro to the...

The compilation (non-cross, i.e. desktop-target) on clang is working very well, when using libstdc++. To try it: ```bash sudo apt-get install clang # clang git clone https://github.com/ajneu/embxx.git cd embxx/ git...

> It's rather strange... these static asserts. > They only pop up when using a different standard c++ library... I've tried increasing `TSize` in [this line](https://github.com/ajneu/embxx/blob/clang/embxx/util/StaticFunction.h#L41), but it does not...

Some investigation regarding the static_asserts [here](https://github.com/ajneu/embxx/blob/clang/embxx/util/StaticFunction.h#L421-L425) If you change the following [lines](https://github.com/ajneu/embxx/blob/clang/embxx/util/StaticFunction.h#L421-L425), to this: ```cpp std::cout

The segfault happens before [test2](https://github.com/ajneu/embxx/blob/clang/module/driver/test/Generic.th#L89) is even run. So there's a weird endless loop happening... (It's happening because in the investigation above, I've commented out the following [line](https://github.com/ajneu/embxx/blob/clang/embxx/util/StaticFunction.h#L421))

Some hints (work in progress... will be improved... as necessary... watch this space): The are various combinations of compilers and libraries with which this should ultimately work: **i)** Compilers: gcc...

> **randvoorhies** commented on Mar 24, 2014 > > It would be great if we could figure out how to add **line numbers** to errors as well. Ideally, the above...

Ok, I've added a test which uses normal `assert` to check the actual invocation of a member function, whose code is defined oc (outside the class).