Stephen Berry

Results 73 issues of Stephen Berry

It would be helpful to be able to prevent the title from being displayed on the page. This would allow the user to use different markdown syntax for the title...

SU2 is a fantastic library, but the build process is really painful to get static linking within another C++ program. CMake is a standard for building C++ projects and would...

feature_request

ChaiScript inherits from ChaiScript_Basic, so this is good practice. I also need to be able to inherit from ChaiScript and dynamic cast, which is impossible without this destructor.

Currently ChaiScript lambda functions support capture by reference, which is awesome! It would be more awesome if we could also specify capture by value when desired. I'm not sure how...

* Compiler Used: MSVC 2015 * Operating System: Windows 10 * Architecture (ARM/x86/32bit/64bit/etc): x64 ### Minimal Example to Reproduce Behavior ``` C++ struct A { double value = 1.0; };...

* Compiler: MSVC 2015 * Operating System: Windows 10 * Architecture: x64 This issue caused me significant headache to find. But, here is a simple example: ``` C++ using system_t...

* Compiler Used: MSVC 2015 * Operating System: Windows 10 * Architecture (ARM/x86/32bit/64bit/etc): 64bit This isn't a major issue, but it is making it difficult for us to test and...

* Compiler Used: MSVC 2015 * Operating System: Windows 10 * Architecture (ARM/x86/32bit/64bit/etc): x64 ### Minimal Example to Reproduce Behavior ### C++ ``` C++ chaiscript::ChaiScript chai; chai.add(chaiscript::bootstrap::standard_library::vector_type("vector_vector_double")); chai.add(chaiscript::vector_conversion()); chai.add(chaiscript::fun([](const std::vector&...

I would like to be able to call a functor within ChaiScript. Example C++: ``` C++ struct Functor { void operator()() { std::cout

* Compiler Used: MSVC 2015 * Operating System: Windows 10 * Architecture (ARM/x86/32bit/64bit/etc): x64 I am creating a function in script that pushes back a `std::vector`. In some cases I...