Forgot your password?
typodupeerror

Comment Re:ah the Rust safety myth (Score 1) 103

That's not that easy. Yes C++ static checkers have improved, but the core guidelines will probably never provide the level of memory safety than Rust offers nowadays. There is a point where you can't make C++ safer without breaking the language. That's why Mozilla decided to create a new language despite its huge C++ code base and that Microsoft decide to favor Rust after experimenting with Checked C. They both have a huge base of C++ application with all the tooling possible, but still 70% of their critical vulnerabilities come from memory unsafety.

Comment Re:ah the Rust safety myth (Score 1) 103

Some bugs in the unsafe regions may renders the whole application unsafe, that's true. That's still a huge improvement over "A lot of potential harmless looking statement anywhere in the program can renders the whole application unsafe". Indeed, the unsafe/safe boundary is not magic, but it is clearly delimited, and if the code inside the block is clean, then your program is memory safe.

Slashdot Top Deals

Nothing makes a person more productive than the last minute.

Working...