you are viewing a single comment's thread
view the rest of the comments
[–] 6 points 2 years ago (1 child)

One of the issues I have with C++ is the standard library source seems to be completely incomprehensible.

AAAAAAhhh I once read a Stroustrup quote essentially going "if you understand vectors you understand C++", thought about that for a second, coming to the conclusion "surely he didn't mean using them, but implementing them", then had a quick google, people said llvm's libc++ was clean, had a look, and noped out of that abomination instantly. For comparison, Rust's vectors. About the same LOC, yes, but the Rust is like 80% docs and comments.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 1 point 2 years ago*

    I think some of those abominational constructs were for compile-time errors. Inline visibility macro is for reducing bynary size, allowing additional optimizations and improving performance and load time.

    In my projects I set default visibility to hidden.

  • source
  • parent