Errors, bugs, questions - page 1873

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
In the latest builds, have you corrected the bug that changing and recompiling EA code is not picked up by the tester? I have to close and reopen the terminal for the new version of ex5 to start testing. Otherwise, the old variant is tested.
I edit the Expert Advisor and either through CTRL+F5 or directly in the tester I see adequate results.
Ctrl+F5 is debugging, right? My problem is not with debugging, but with running a simple test.
How do I create a hidden class object with a closed constructor?
This is how the leaks are coming.
It's not clear how to call a destructor in this situation. Singleton is not it.
A class object with a closed constructor can only be created using a special static function of that class.
Although the compiler is not currently swearing at the code you cited, this will definitely be fixed in the future.
You can use a smart pointer to call the destructor.
The destructor must be open.
An object of a class with a closed constructor can only be created using a special static function of that class.
Although the compiler is not currently swearing at the code you cited, this will definitely be fixed in the future.
The proposed static method in this case will be some kind of self-deception, because it will be a constructor in essence. You will have to call it explicitly.
You can use a smart pointer to call the destructor.
The destructor must be open.
If you are sure that the constructor should be private, there is no other way.
A smart pointer is an object that contains a simple pointer and ensures that it is removed in time.
This is the simplest option.
There are also more complex smart pointers.
It's very well written about them in this book: https://rsdn.org/res/book/cpp/cpp_real_programmers.xml
what is missing to make the code compile:
this variant writes 'var' - struct member undefined
PS. got the error ))
int _val = dynamic_cast <CCore *>(_obj.core).var;
void* since which build in the language?
that's when the interfaces came in
when the interfaces came in.