minimax2000
minimax2000
Friends

Add friends via their profile or user search and you will be able to see if they are online

minimax2000
Added topic static variable initialization bug?
This code prints "0" though it should print "1". struct X {          int N;         X()         {
minimax2000
Added topic Cloud Protector Bug?
Compiling the code below with MQL5 Cloud Protector on MetaEditor build 2302 fails with a message "protecting finished with error 'unknown'  EX4 write error". void f( string s = NULL ) {    Print ( StringLen (s) ); } The code below
minimax2000
Added topic Bug: iMAOnArray doesn't recognize value update when working on array passed as an argument.
iMAOnArray returns wrong value when it is working on array passed as function 's argument. The code below shows that iMAOnArray returns diffrent result for argument array and local array though they are equal.  It seems that iMAOnArray caches
minimax2000
Added topic Buggy constructor's behavior on MT4 build 880
I got recent update of MT4 build 880 and MetaEditor build 1173. I think I found a bug on class constructor's behavior. class Cls { public :         Cls( const Cls* ptr) { Print (ptr == NULL ); } }; Cls c( NULL
minimax2000
Added topic Pointer array as a member behaves strange when passed to a function.
Pointer array doesn't work well when it is a member of a class or a struct. It returns bad pointers if it is passed to a function . Why??? class C { public : int c; }; struct S { C* array[ 2 ]; } s; void F() {   s.array[ 0 ] = new C();
minimax2000
Registered at MQL5.community