|
Registered User
|
|
|
Sep 20 |
awarded | ● Yearling |
|
Aug 28 |
comment |
GLib v APR pros and cons of each Yeah, I agree Linus made the right choice to use straight C for git. Use whatever is appropriate for your project and target developer audience. C++ strings are nice, especially for a "hobby" programmer like the poster stated, because you don't have to track ownership and figure out when to free() them, and the auto-growing makes it so you don't have to worry about tricky strcat cases. Of course, as I said, "There are plenty of valid reasons to stick to C..." as well. Use what works for you. |
|
Aug 6 |
answered | Fractal Encryption |
|
Jun 16 |
comment |
Can I use the Curiously Recurring Template Pattern here (C++)? Martin's right. You're suggesting adding significant complexity for speculative performance gains. And thousands of widgets isn't very many for an optimization problem -- I would doubt the vtable is significant. Always, always profile it first when optimizing. |
