Rudy Velthuis 91 Posted April 26, 2019 1 hour ago, Markus Kinzler said: @AlekXL@Rudy Velthuis Please Stop!! We told you to do this already several times now! Our patience isn't unlimited! What do you think I am doing? I am telling him that the discussion is over. Share this post Link to post
Sherlock 663 Posted April 26, 2019 32 minutes ago, Rudy Velthuis said: What do you think I am doing? I am telling him that the discussion is over. There is one simple and effective way to follow through on that, which is to just stop responding. 2 Share this post Link to post
Remy Lebeau 1394 Posted April 26, 2019 On 4/25/2019 at 10:45 AM, AlekXL said: there are a lot things, in which C++ sucks: 1. lack of try ..finally Many C++ compilers do offer that as an extension. C++Builder has 'try/__finally'. VC++ and CLang have '__try/__finally', etc. But proper use of RAII trumps the need for try/finally at all. But if you want, try/finally can be emulated in pure C++ using lambdas and pre-compiler macros (see this, for example). 4 Share this post Link to post