Results 23 issues of Denis

It will be nice to have output generator for markdown tables. (esp with sorting options).

feature
runner

Hi Kris! First of all thanks for your efforts! I was looking into your sketch: ESP8285/MPU9250/MPU9250_MS5637_BasicAHRS2_ESP8266.ino and noticed a possible error in the AHRS rate calculation ```cplusplus delt_t = millis()...

lua and boost submodules premake script for build system files generation

Hello, while working on performance comparison for different lua bindings libraries (https://github.com/bagobor/cpp2lua-buindings-battle) I found that lua-api-pp failed to build with VS2015 + Lua 5.2 and latest boost. I created separate...

replace: ``` c++ #ifdef _MSC_VER # include "misc/exception.hpp" #endif ``` with: ``` c++ #if _MSC_VER < 1900 # include "misc/exception.hpp" #endif ```

Compiler to Lua/Python will bring much interest to language. Any plans to do that? Or I can help but have no AST processing experience. Can you help with 1st steps?