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

I think you missed the whole point of my comment 😂. Regardless, the time spent compiling a small snippet of code is completely negligible. In the end, both #if 0 and if (false) have their complimentary uses.

  • source
  • parent
  • hideshow 2 child comments
  • [–] -1 points 2 years ago (1 child)

    Yeah, but I still think if (false) is silly because it adds an artificial constraint which is to make sure the disabled parts always compile even when you're not using them. The equivalent of that would be having to check that all the revisions of a single source file compile against your current codebase.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 2 years ago

    If(false) works in interpreted languages, the other one doesn't. It's stupid either way, that's what version control is for, but if we are doing the stupidness anyway, you can't use preprocessor flags in many languages because shit doesn't get compiled.

  • source
  • parent