dragonfly-msg / dragonfly

Dragonfly is a simple messaging system that helps programmers create modular distributed applications rapidly
http://dragonflymessaging.org/
Other
15 stars 8 forks source link

Fix Dragonfly.NET compilation error regarding the usage of array #4

Open hongweimao opened 5 years ago

hongweimao commented 5 years ago

This compilation error was due to some changes made to the include structure in the C++ Standard Library headers since Visual Studio 2015, and the usage of "using namespace std;" in some header file that Dragonfly.NET depends on. The C++/CLI array in the cli namespace should be used in the scripts, not the one in the std namespace.