You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's really just a matter of taste but you could protect the linkage of source-file level helpers by enclosing them in an anonymous namespace (rather than using static). e.g.
It's really just a matter of taste but you could protect the linkage of source-file level helpers by enclosing them in an anonymous namespace (rather than using static). e.g.
namespace {
int helper() {
// etc
}
}