veefu

863
Reputation
152 views

Registered User

Name veefu
Member for 8 months
Seen Oct 14 at 18:46
Website
Location Washington DC
Age 32
Maintenance programmer. Currently maintaining a large multi-tier C++ code-base with LDAP back-end, multi-thread multi-platform middle-tier, webserver-integrated client-tier, and a web user interface also (gasp!) authored in C++.
Jul
30
accepted Howto elegantly extract a 2D rectangular region from a C++ vector
Jul
1
accepted sed: using variables across multiple lines
Jun
26
answered Debug core file with no symbols
Jun
16
comment Using a namespace twice
please clarify "include same namespace twice". Are you asking if it's ok to declare "using somenamespace; using somenamespace;" or are you asking if it's ok to declare a namespace mutliple times, as in "namespace SomeNamespace {} namespace SomeNamespace {}"?
Jun
8
comment Why call sizeof operator with two arguments?
Were the comma operator being used, wouldn't it be necessary to enclose the pair in another set of parentheses?