Y
Hacker News
new
|
ask
|
show
|
jobs
by
superfunc
3971 days ago
Lambdas really do clean things up nicely in some places. It pains me to have to write function objects at work knowing this.
1 comments
andresmanz
3971 days ago
That must be annoying. Why can't you switch to C++11/14?
link
superfunc
3971 days ago
Reliance on certain, newly-deprecated things like gnu hash_map which has performance characteristics important to our specific application.
link
lholden
3971 days ago
Does -std=gnu++11? not still support the gnu version?
link
nly
3971 days ago
You can use hash_map just find in C++11/14 mode, you'll just a nag #warning at compile time.
link