Andrzej Borucki
Andrzej Borucki
In file CiREsolver.cs:985 is ```c# CiMethod method = symbol.Symbol switch { CiMethod m => m, CiMethodGroup group => group.Methods.FirstOrDefault(m => CanCall(m, arguments)) ?? /* pick first for the error message...
I am develop WinApi wrapper in Rust. I have installed RustDT plugin. Cargo on Windows uses Visual Studio linking and in subdirectory deps make .pdb files. Unfortunately RustDT requires only...
First is simple error: in compiler.hpp and others hpp I must change: error_handler = function(error_handler_)( "Error! ", _2, phx::cref(error_handler_.iters)[_1]); to error_handler = function(error_handler_)( (char *const)("Error! "), _2, phx::cref(error_handler_.iters)[_1]); because is...
Problem with fuerte can be solved changing https://github.com/arangodb/velocypack/blob/d11b92ef0dacb33bc493e1cabd5d9b12ecd83908/CMakeLists.txt#L6 from set(CMAKE_CXX_STANDARD 11 CACHE STRING "target C++ standard") to set(CMAKE_CXX_STANDARD 17 CACHE STRING "target C++ standard") see: https://github.com/arangodb/fuerte/issues/27
```cpp int main(int argc, char **argv) { SingleApplication app(argc, argv); if( app.isSecondary() ) { QStringList arguments = app.arguments(); app.sendMessage( arguments.join(' ').toUtf8() ); app.exit( 0 ); } MainWindow mainWindow; //
Before change to SingleApplication I have ```cpp int main(int argc, char **argv) { QApplication app(argc, argv); QScreen *screen = QGuiApplication::primaryScreen(); QRect screenGeometry = screen->geometry(); MainWindow mainWindow; mainWindow.resize(int(screenGeometry.width()*0.8), int(screenGeometry.height()*0.8)); mainWindow.show(); return...
Added compilable file all_in_one.c, java test program Changed grammar is tested
lzham_types.h not compiled because consts are defined in I must #undef UINT8_MAX #undef UINT16_MAX ... Similar I must undef consts in stream_common.h
I write test how big enough must be buffer for good compression ``` void testSize(char *path, int size) { uLong IN_LEN; uLong in_len; uLong out_len; uLong new_len; IN_LEN = size;...
Including (I have VS2015) for time measuring causes errors.